Loading
0 Follower
0 Following
beatriceb123
Beatrice A.

Location

Iasi, RO

Badges

1
0
0

Connect

Activity

Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
Mon
Wed
Fri

Ratings Progression

Loading...

Challenge Categories

Loading...

Challenges Entered

5 PROBLEMS 3 WEEKS. CAN YOU SOLVE THEM ALL?

Latest submissions

No submissions made in this challenge.

Latest submissions

No submissions made in this challenge.

Predict Wine Quality

Latest submissions

No submissions made in this challenge.

Student Evaluation

Latest submissions

See All
graded 67503
graded 67501
graded 67500
Participant Rating
Participant Rating
beatriceb123 has not joined any teams yet...

ImageCLEF 2020 Caption - Concept Detection

Data for CUIs to Strings

Almost 4 years ago

I know it’s late, but maybe this will help someone.
I used this: http://denote.rnet.ryerson.ca/umlsMap/rest/lookup.php like that:

def get_label_and_comment(cui):
    cui_dict = {'CUI': cui}
    site = "http://denote.rnet.ryerson.ca/umlsMap/rest/lookup.php"
    response = requests.get(site, params=cui_dict)

    response = str(response.text).split("\"")
    label = response[1]
    comment = response[3] if response[3] else "None"
    return label, comment

#example:
print(get_label_and_comment("C0001558"))

beatriceb123 has not provided any information yet.