Schema for scholarship #327
Replies: 7 comments 10 replies
|
Adding on to what @mikehquan19 mentioned... I found some inconsistency with the listings too. Scholarship listing tool had some general scholarships (disbursed by more than two schools per session), however, this was not available on that school's personal scholarship website. As an example, I was using the Raytheon Scholarship that goes for several majors across diff. schools. So, it might be a good idea to scrape individual school offerings to:
The only thing I am mostly concerned about in this scenario is if there is a scholarship visible on the school portal but not on the Listing's tool. In that cases it might be a good idea to leverage the scraped data for both the use cases jotted above |
|
here are all the scholarship listings on each school's website
|
|
What I'm thinking right now is we use the UTD listing as the base for designing the base schema for scholarships first. And then when we look into the Atermis and the schools' personal websites, we will modify the schemas continuously to accomodate with all the sources at the end. What do yall think? |
|
If we're basing the main scholarship schema off of the UTD listings, then for fields, we can have name, school, academic program (or majors), status (open/close), and deadline from the table. From the More Information page, we can also get the term, matriculation status (continuing or incoming student), citizenship status, Texas residency status, course load (full time or part time), student classification (undergrad or grad student), concentrations, and contact info. We can probably also get the additional eligibility information/requirements as well. |
|
Scholarship = { |
|
Looking into Atermis, it appears that we can get a good bit without llm parsing. Using the filter system we can get the requirements for each scholarship. There will need to be some clean up but it looks pretty similar to Scholarship listings. How to get it:
|
|
I was looking through Artemis and checking to see what the general UTD scholarship website does not have. This is an incomplete list, but here's what I found so far. Missing from general UTD scholarship site:
BankUnited iCARE Scholarship Fund
BMEN IAC
Dean's Dissertation Completion Award
Dean's MA Scholarship
Dr. Gopal Gupta Undergraduate Scholarship for Computer Science established by ACM 2020
Dr. Roger N. & Adrienne T. Rosenberg Graduate Fellowship
Emma and Vittorio Argento MS'76 PhD '89 Scholarship
England Family Scholarship in Engineering and Computer Science
Excellence in Education Doctoral Fellowship
Gil and Frances Lease Endowed Scholarship
Goldman Sachs Excellence in Computer Science Scholarship
HWBJ Graduate Research Award
Duplicate in Artemis (maybe?) It seems that if a scholarship is missing from the general UTD scholarship site, it's likely to be from ECS or Harry Bass. Additionally, I noticed that the general site also merges all of the undergraduate and graduate JSOM scholarships into one (Naveen Jindal School of Management Undergraduate Scholarships and Naveen Jindal School of Management Graduate Scholarships). |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Designing the schema for new datasource (scholarships, study abroad programs, etc.) should again be the collective effort and responsibility of the team rather than some individual works that don't really yield any fruits.
We will get started with designing the schema for
Scholarship. Note that we rely on the 2 different sources for our scrapers:The problem with Atermis is that it lists the scholarship's info in a less structured, more natural language-based format that will be very challenging to parse unless we need some help from LLM. Nontheless, I believe that if we reverse-engineer the site, we will perhaps find some API or datasource for us to work with.
Throw your ideas here about the schema, then I will finalize it once we have the schema that everyone agrees on.
All reactions