blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
616
content_id
stringlengths
40
40
detected_licenses
listlengths
0
69
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
63
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.91k
686M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
213 values
src_encoding
stringclasses
30 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
2
10.3M
extension
stringclasses
246 values
content
stringlengths
2
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
212
231e74e1f4f13a9e3dcb55efab42e8440f1f5f64
752761ecf6a4a751ffa2c6711ea21009a03960e2
/TB-IA-Servicio/fuzzy.py
24c9748723fe6e980fb1a200ab9cf36817e54a7d
[]
no_license
Drugoralex/IA_TB2
2943d0236546d647a79f3d58e0928808b17dbb62
41e25af8bd2a4223a65c1124f3e946ae2b8aeab2
refs/heads/master
2020-04-06T19:04:13.655082
2018-11-17T16:16:36
2018-11-17T16:16:36
157,724,308
0
0
null
null
null
null
UTF-8
Python
false
false
2,875
py
import numpy as np import skfuzzy as fuzz import matplotlib.pyplot as plt x_ram = np.arange(2, 16, 1) x_vid = np.arange(768, 3580, 1) x_proc = np.arange(2.1, 4.3, 1) ram_lo = fuzz.trimf(x_ram, [2, 3, 4]) ram_md = fuzz.trimf(x_ram, [4, 6, 8]) ram_hi = fuzz.trimf(x_ram, [8, 12, 16]) vid_lo = fuzz.trimf(x_vid, [768, 980, 1200]) vid_md = fuzz.trimf(x_vid, [1200, 1550, 1920]) vid_hi = fuzz.trimf(x_vid, [1920, 2590, 3580]) proc_lo = fuzz.trimf(x_proc, [2.1, 2.3, 2.4]) proc_md = fuzz.trimf(x_proc, [2.4, 2.8, 3.1]) proc_hi = fuzz.trimf(x_proc, [3.1, 3.7, 4.3]) fig, (ax0, ax1, ax2) = plt.subplots(nrows=3, figsize=(8, 9)) ax0.plot(x_proc, proc_lo, 'b', linewidth=1.5, label='Poco') ax0.plot(x_proc, proc_md, 'g', linewidth=1.5, label='Normal') ax0.plot(x_proc, proc_hi, 'r', linewidth=1.5, label='Mucho') ax0.set_title('Potencia del procesador') ax0.legend() ax1.plot(x_vid, vid_lo, 'b', linewidth=1.5, label='Poco') ax1.plot(x_vid, vid_md, 'g', linewidth=1.5, label='Normal') ax1.plot(x_vid, vid_hi, 'r', linewidth=1.5, label='Mucho') ax1.set_title('Potencia de la tarjeta de video') ax1.legend() ax2.plot(x_ram, ram_lo, 'b', linewidth=1.5, label='Poco') ax2.plot(x_ram, ram_md, 'g', linewidth=1.5, label='Normal') ax2.plot(x_ram, ram_hi, 'r', linewidth=1.5, label='Mucho') ax2.set_title('Capacidad de memoria RAM') ax2.legend() for ax in (ax0, ax1, ax2): ax.spines['top'].set_visible(False) ax.spines['right'].set_visible(False) ax.get_xaxis().tick_bottom() ax.get_yaxis().tick_left() plt.tight_layout() plt.show() ram_level_lo = fuzz.interp_membership(x_ram, ram_lo, 4) ram_level_md = fuzz.interp_membership(x_ram, ram_md, 4) ram_level_hi = fuzz.interp_membership(x_ram, ram_hi, 4) vid_level_lo = fuzz.interp_membership(x_vid, vid_lo, 1550) vid_level_md = fuzz.interp_membership(x_vid, vid_md, 1550) vid_level_hi = fuzz.interp_membership(x_vid, vid_hi, 1550) proc_level_lo = fuzz.interp_membership(x_proc, proc_lo, 3.1) proc_level_md = fuzz.interp_membership(x_proc, proc_md, 3.1) proc_level_hi = fuzz.interp_membership(x_proc, proc_hi, 3.1) active_rule1 = np.fmax(ram_level_lo, vid_level_lo) proc_activation_lo = np.fmin(active_rule1, proc_level_lo) active_rule2 = np.fmax(ram_level_md, vid_level_md) proc_activation_md = np.fmin(active_rule2, proc_level_md) active_rule3 = np.fmax(ram_level_hi, vid_level_hi) proc_activation_hi = np.fmin(active_rule3, proc_level_lo_hi) aggregated = np.fmax(proc_activation_lo, np.fmax(proc_activation_md, proc_activation_hi)) ram = fuzz.defuzz(x_ram, aggregated, 'centroid') proc = fuzz.defuzz(x_proc, aggregated, 'centroid') vid = fuzz.defuzz(x_vid, aggregated, 'centroid') ram_activation = fuzz.interp_membership(x_ram, aggregated, ram) proc_activation = fuzz.interp_membership(x_proc, aggregated, proc) vid_activation = fuzz.interp_membership(x_vid, aggregated, vid) plt.show()
[ "u201513219@upc.edu.pe" ]
u201513219@upc.edu.pe
2df6b73f91163ac5b4445ce597f0830256618a14
0941f4b007a17adbfcbeaac5e4bca35365037992
/udp-client.py
d554d6b7026c65fedaddf70fc75c03284fe2d3d4
[]
no_license
stuartabramshumphries/networking
406c524c56724562ec0832038989accdfcdc4873
2cb04e2c73afb8b36dee46397a0edbc5963264b5
refs/heads/master
2016-08-02T22:35:52.009610
2013-05-31T08:18:10
2013-05-31T08:18:10
null
0
0
null
null
null
null
UTF-8
Python
false
false
344
py
#!/usr/bin/python # UDP client import socket cnt=1 client_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) while 1: data = raw_input("Type something(q or Q to exit): ") if (data <> 'q' and data <> 'Q'): while (cnt <10): client_socket.sendto(data, ("localhost",54321)) cnt=cnt+1 cnt=1 else: break client_socket.close()
[ "stuartabramshumphries@gmail.com" ]
stuartabramshumphries@gmail.com
c7d6e9ed383e12bdd30d05b2e352f315b4058bd9
7c45bbb653be486f8a8293877b665cab5de3176f
/interpretable_models/codes/dataFolds.py
517b521ba17a0dfa3b7cf90d3190f21c017eecd3
[]
no_license
vishwassathish/Interpretable_models
37e377cd894c6b12a5984dc259fae9153c460352
c8901e930cd076523a007b622e122f351adb32a4
refs/heads/master
2020-03-22T22:37:38.875272
2019-06-24T17:52:57
2019-06-24T17:52:57
140,761,778
0
0
null
null
null
null
UTF-8
Python
false
false
2,948
py
import csv import random import numpy as np from pickle import dump def readData(filename): data=[] with open(filename,"r") as f: reader=csv.reader(f) for row in reader: data.append(row) headers=data[0] data=data[1:] f.close() for row in data: for i in range(1,len(row)): row[i]=float(row[i]) return data,headers def divideData(ratio,data): l=len(data) numberTraining=int(ratio*l) numberTesting=l-numberTraining dataPositive=[] dataNegative=[] for row in data: if(row[-1]==0.0): dataNegative.append(row) else: dataPositive.append(row) trainingData=[] testingData=[] numDataPositive=len(dataPositive) while(len(dataPositive)>=numDataPositive//2): n=random.randint(0,len(dataPositive)-1) testingData.append(dataPositive[n]) del dataPositive[n] #print("Number Testing : ",len(testingData)) remaining=numberTesting-len(testingData) for i in range(0,remaining): n=random.randint(0,len(dataNegative)-1) testingData.append(dataNegative[n]) del dataNegative[n] trainingData=dataPositive+dataNegative #print("Number Training : ",len(trainingData)) return trainingData,testingData def getTrainAndTest(train,test): print("splitting x and y") xTrain=[] xTest=[] yTrain=[] yTest=[] for row in train: xTrain.append(np.array(row[0:len(row)-1])) yTrain.append(row[-1]) for row in test: xTest.append(np.array(row[0:len(row)-1])) yTest.append(row[-1]) for x in xTest: try: while(True): idx=xTrain.index(x) del xTrain[idx] del yTrain[idx] except: pass return np.array(xTrain).astype(float),np.array(yTrain).astype(float),np.array(xTest).astype(float),np.array(yTest).astype(float) if __name__ == "__main__" : path='../data/final_training_data.csv' data,featureNames=readData(path) train,test=divideData(0.65,data) x_train, y_train, x_validate, y_validate=getTrainAndTest(train,test) print("Training data: ", x_train.shape, " ", y_train.shape) print("Testing data: ", x_validate.shape, " ", y_validate.shape) myData = {"feature_names":featureNames, "x_train":x_train, "y_train":y_train, "x_validate":x_validate, "y_validate":y_validate} with open("../data/myData.pickle", "wb") as f: dump(myData, f) # with open("../data/x_train.pickle", "wb") as f: # dump(x_train, f) # with open("../data/y_train.pickle", "wb") as f: # dump(y_train, f) # with open("../data/x_validate.pickle", "wb") as f: # dump(x_validate, f) # with open("../data/y_vaidate.pickle", "wb") as f: # dump(y_validate, f)
[ "noreply@github.com" ]
vishwassathish.noreply@github.com
53e93f962e07335199743cfd2031f7866c6928b6
f891828ffe9c8501d276560c8c52d319f284056f
/205_isomorphic_m/index_map.py
0f5f7ccd9a02480277885e72dd81ce413e922721
[]
no_license
chao-shi/lclc
1b852ab61fef4072039c61f68e951ab2072708bf
2722c0deafcd094ce64140a9a837b4027d29ed6f
refs/heads/master
2021-06-14T22:07:54.120375
2019-09-02T23:13:59
2019-09-02T23:13:59
110,387,039
0
0
null
null
null
null
UTF-8
Python
false
false
214
py
class Solution(object): def isIsomorphic(self, s, t): """ :type s: str :type t: str :rtype: bool """ return map(s.find, s) == map(t.find, t) # From OJ discussion
[ "chris19891128@gmail.com" ]
chris19891128@gmail.com
11c74340ab82e472305fd10a2cd5370c1dea9ffb
fb1a7534356941e763755838e9b06fede7a7d116
/tests/test_metrics.py
46fe3e1aeab2e0aed220e08069a18e20c0547717
[ "Apache-2.0" ]
permissive
torkelo/graphite-api
e2417f0bddae9bcd0581272dc270bbe08a78d653
0fd1904b462c1cbbe99f531a365839647a01a7e1
refs/heads/master
2020-12-02T15:08:56.573796
2014-03-17T21:59:38
2014-03-17T21:59:38
null
0
0
null
null
null
null
UTF-8
Python
false
false
7,363
py
import os.path import whisper from . import TestCase, WHISPER_DIR class MetricsTests(TestCase): def _create_dbs(self): for db in ( ('test', 'foo.wsp'), ('test', 'bar', 'baz.wsp'), ): db_path = os.path.join(WHISPER_DIR, *db) os.makedirs(os.path.dirname(db_path)) whisper.create(db_path, [(1, 60)]) def test_find(self): url = '/metrics/find' response = self.app.get(url) self.assertEqual(response.status_code, 400) response = self.app.get(url, query_string={'query': 'test'}) self.assertJSON(response, []) response = self.app.get(url, query_string={'query': 'test', 'format': 'completer'}) self.assertJSON(response, {'metrics': []}) self._create_dbs() response = self.app.get(url, query_string={'query': 'test.*', 'format': 'treejson'}) self.assertJSON(response, [{ 'allowChildren': 1, 'expandable': 1, 'id': 'test.bar', 'leaf': 0, 'text': 'bar', }, { 'allowChildren': 0, 'expandable': 0, 'id': 'test.foo', 'leaf': 1, 'text': 'foo', }]) response = self.app.get(url, query_string={'query': 'test.*', 'format': 'treejson', 'wildcards': 1}) self.assertJSON(response, [{ 'text': '*', 'expandable': 1, 'leaf': 0, 'id': 'test.*', 'allowChildren': 1, }, { 'allowChildren': 1, 'expandable': 1, 'id': 'test.bar', 'leaf': 0, 'text': 'bar', }, { 'allowChildren': 0, 'expandable': 0, 'id': 'test.foo', 'leaf': 1, 'text': 'foo', }]) response = self.app.get(url, query_string={'query': 'test.*', 'format': 'completer'}) self.assertJSON(response, {'metrics': [{ 'is_leaf': 0, 'name': 'bar', 'path': 'test.bar.', }, { 'is_leaf': 1, 'name': 'foo', 'path': 'test.foo', }]}) response = self.app.get(url, query_string={'query': 'test.*', 'wildcards': 1, 'format': 'completer'}) self.assertJSON(response, {'metrics': [{ 'is_leaf': 0, 'name': 'bar', 'path': 'test.bar.', }, { 'is_leaf': 1, 'name': 'foo', 'path': 'test.foo', }, { 'name': '*', }]}) def test_find_validation(self): url = '/metrics/find' response = self.app.get(url, query_string={'query': 'foo', 'wildcards': 'aaa'}) self.assertJSON(response, {'errors': {'wildcards': 'must be 0 or 1.'}}, status_code=400) response = self.app.get(url, query_string={'query': 'foo', 'from': 'aaa', 'until': 'bbb'}) self.assertJSON(response, {'errors': { 'from': 'must be an epoch timestamp.', 'until': 'must be an epoch timestamp.', }}, status_code=400) response = self.app.get(url, query_string={'query': 'foo', 'format': 'other'}) self.assertJSON(response, {'errors': { 'format': 'unrecognized format: "other".', }}, status_code=400) def test_expand(self): url = '/metrics/expand' response = self.app.get(url) self.assertJSON(response, {'errors': {'query': 'this parameter is required.'}}, status_code=400) response = self.app.get(url, query_string={'query': 'test'}) self.assertJSON(response, {'results': []}) self._create_dbs() response = self.app.get(url, query_string={'query': 'test'}) self.assertJSON(response, {'results': ['test']}) response = self.app.get(url, query_string={'query': 'test.*'}) self.assertJSON(response, {'results': ['test.bar', 'test.foo']}) response = self.app.get(url, query_string={'query': 'test.*', 'leavesOnly': 1}) self.assertJSON(response, {'results': ['test.foo']}) response = self.app.get(url, query_string={'query': 'test.*', 'groupByExpr': 1}) self.assertJSON(response, {'results': {'test.*': ['test.bar', 'test.foo']}}) def test_expand_validation(self): url = '/metrics/expand' response = self.app.get(url, query_string={'query': 'foo', 'leavesOnly': 'bbb', 'groupByExpr': 'aaa'}) self.assertJSON(response, {'errors': { 'groupByExpr': 'must be 0 or 1.', 'leavesOnly': 'must be 0 or 1.', }}, status_code=400) def test_noop(self): url = '/dashboard/find' response = self.app.get(url) self.assertJSON(response, {'dashboards': []}) url = '/dashboard/load/foo' response = self.app.get(url) self.assertJSON(response, {'error': "Dashboard 'foo' does not exist."}, status_code=404) url = '/events/get_data' response = self.app.get(url) self.assertJSON(response, []) def test_search(self): url = '/metrics/search' response = self.app.get(url, query_string={'max_results': 'a'}) self.assertJSON(response, {'errors': { 'max_results': 'must be an integer.', 'query': 'this parameter is required.'}}, status_code=400) response = self.app.get(url, query_string={'query': 'test'}) self.assertJSON(response, {'metrics': []}) def test_search_index(self): response = self.app.get('/metrics/search', query_string={'query': 'collectd.*'}) self.assertJSON(response, {'metrics': []}) parent = os.path.join(WHISPER_DIR, 'collectd') os.makedirs(parent) for metric in ['load', 'memory', 'cpu']: db = os.path.join(parent, '{0}.wsp'.format(metric)) whisper.create(db, [(1, 60)]) response = self.app.put('/index') self.assertJSON(response, {'success': True, 'entries': 3}) response = self.app.get('/metrics/search', query_string={'query': 'collectd.*'}) self.assertJSON(response, {'metrics': [ {'is_leaf': False, 'path': None}, {'is_leaf': True, 'path': 'collectd.cpu'}, {'is_leaf': True, 'path': 'collectd.load'}, {'is_leaf': True, 'path': 'collectd.memory'}, ]})
[ "brutasse@gmail.com" ]
brutasse@gmail.com
b2c412ee6dc685069f68ad3eb7da7eff074781fc
bac81d6abd16c4ab1b140b38590440c8614a235c
/project/proj4_run/src/Env.py
50c852881c1f2544946650289b164b89184d200a
[ "MIT" ]
permissive
robot-tutorial/robotics_tutorial
0ec691c0f0883ab8c086252d0970ec8e92b96773
12affebfe6cb3810cc1e8fde4c674ed077b926a5
refs/heads/master
2022-07-17T07:08:38.519135
2020-05-19T08:19:18
2020-05-19T08:19:18
251,656,740
0
1
MIT
2020-04-08T14:24:45
2020-03-31T16:03:36
Python
UTF-8
Python
false
false
2,986
py
import pybullet as p import os import Helper import random import math class Env(object): def __init__(self, robotId, targetPos): # load map and robot mapName = 'map.urdf' mapPath = Helper.findURDF(mapName) self.mapId = p.loadURDF(mapPath) self.smoothMapId = p.loadURDF(mapPath, [-0.01, 0.0, -0.01]) p.changeDynamics(self.smoothMapId, -1, lateralFriction=0.5) p.changeDynamics(self.smoothMapId, -1, spinningFriction=0.5) p.setPhysicsEngineParameter(constraintSolverType=p.CONSTRAINT_SOLVER_LCP_DANTZIG, globalCFM=0.00001) targetName = 'target.urdf' targetPath = Helper.findURDF(targetName) self.targetId = p.loadURDF(targetPath, targetPos) self.robotId = robotId self.motors = [] jointFrictionForce = 0.001 for joint in range(p.getNumJoints(self.robotId)): p.setJointMotorControl2(self.robotId, joint, p.POSITION_CONTROL, force=jointFrictionForce) self.noise = 0.03 self.controlMode = p.TORQUE_CONTROL self.max_output = 250 def addBonusBlock(self): bonusBlockName = 'bonusBlock.urdf' self.bonusBlockId = [] blockPos = [[6.5, 0, 4.75], [12.25, 0, 1.75], [19.25, 0, 1.75], [24.75, 0, 2.25]] self.bonus = [0 for i in range(len(blockPos))] for block in blockPos: self.bonusBlockId.append(p.loadURDF(Helper.findURDF(bonusBlockName), basePosition=block)) def checkBonus(self): for bonusId, bonusBlockId in enumerate(self.bonusBlockId): if self.bonus[bonusId] > 0: continue getBonus = p.getContactPoints(bodyA=self.robotId, bodyB=bonusBlockId) if getBonus: self.bonus[bonusId] = 1 def cameraControl(self): # control camera robotPos = p.getLinkState(self.robotId, 2)[0] p.resetDebugVisualizerCamera(5.0, 0.0, 0.0, robotPos) def setMotorName(self, name): if len(name) > 2: raise RuntimeError('Too many motors') for jointId in range(p.getNumJoints(self.robotId)): jointName = p.getJointInfo(self.robotId, jointId)[1] if jointName.decode() in name: self.motors.append(jointId) def control(self, force): # apply force control # force: list of 2 float, input force signal for two engine for motor in range(2): if math.fabs(force[motor]) >= self.max_output: if force[motor] > 0: force[motor] = self.max_output * random.uniform(1 - self.noise, 1 + self.noise) else: force[motor] = -self.max_output * random.uniform(1 - self.noise, 1 + self.noise) force[motor] *= random.uniform(1 - self.noise, 1 + self.noise) p.setJointMotorControlArray(self.robotId, self.motors, self.controlMode, forces=force)
[ "fuchaojieme@outlook.com" ]
fuchaojieme@outlook.com
f5963aeec458e4ee5c2b2115e3bb24aeafc317eb
485cb201a47148c72b7cc45fe5647ef32baa57be
/3_Multi_User_Blog/Forms_inputs/play.py
6c25aea9061a0c117d7aa93b148bf0c4df83f41f
[]
no_license
aniruddhabarapatre/FSND
0da5b0ce54b66d7b7fc929259d0d476d1aa0b1bf
a59a41f8e2d2109eb6d01d7ac2bc79b66aa85927
refs/heads/master
2020-02-26T15:01:44.691005
2017-05-21T04:29:47
2017-05-21T04:29:47
83,217,958
1
1
null
2017-04-18T02:14:59
2017-02-26T15:13:21
Python
UTF-8
Python
false
false
482
py
import webapp2 form = """ <form action="/testform"> <input name="q"> <input name="submit"> </form> """ class MainPage(webapp2.RequestHandler): def get(self): self.response.out.write(form) class TestHandler(webapp2.RequestHandler): def get(self): q = self.request.get("q") self.response.out.write(q) app = webapp2.WSGIApplication([('/', MainPage)], ('/testform', TestHandler), debug=true)
[ "aniruddhabarapatre@gmail.com" ]
aniruddhabarapatre@gmail.com
c1fc7ed400614f9828dd914aab69a6d171edf275
a491f21896ffb11fcf8116e8cea2c18c92a31f82
/assethub/assets/migrations/0010_auto_20170104_1249.py
3e3511e0e3093ff65a074dc6038aae84ade2af4c
[ "BSD-3-Clause" ]
permissive
portnov/assethub
8126bd27ba913ba5c54acaed5fbccee5dce82623
0f2f9d5e190b2a633a794514b54d8b408c9ed2a6
refs/heads/master
2021-01-12T03:50:42.109009
2017-04-07T16:12:16
2017-04-07T16:12:16
78,276,047
3
1
null
null
null
null
UTF-8
Python
false
false
630
py
# -*- coding: utf-8 -*- # Generated by Django 1.10.4 on 2017-01-04 12:49 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('assets', '0009_profile_follows'), ] operations = [ migrations.AlterField( model_name='application', name='slug', field=models.SlugField(max_length=32, unique=True), ), migrations.AlterField( model_name='component', name='slug', field=models.SlugField(max_length=32, unique=True), ), ]
[ "portnov@iportnov.ru" ]
portnov@iportnov.ru
ff24d282882cdf0ca3171c74b7a97a578afed28e
776524cbd37e9dd3f92804350058c0ec2189c851
/app.py
c5ccb02b8c337b7063ea2d24ce261f70315eb9d5
[]
no_license
marcos26071998/soham
80698a14a4f0d3ee4871b2ae32c4df0b81590fb8
f96bec30907ba7ed2758edeb3110db5c1f61dfa1
refs/heads/master
2022-12-06T05:42:54.123783
2020-08-23T18:45:34
2020-08-23T18:45:34
289,743,271
0
0
null
null
null
null
UTF-8
Python
false
false
347
py
# -*- coding: utf-8 -*- """ Created on Sun Aug 23 23:40:17 2020 @author: Anirban """ from flask import Flask, render_template # Define a flask app app = Flask(__name__) @app.route('/', methods=['GET']) def index(): # Main page return render_template('index.html') if __name__ == '__main__': app.run(debug=True)
[ "noreply@github.com" ]
marcos26071998.noreply@github.com
8afec5a7c9748873c1dbc65e7e67f6d025f33a9e
51d098e7ac392556a6365fcf7d283546d1bc86cb
/pysswords/db/credential.py
651901a52f61b2811503c8e9363f048ac638b221
[ "MIT" ]
permissive
mauriciomelo/pysswords
7dd632577b261aa198a618ca1d6d0faa825cb5e7
e845475a2a37f6e5ac4fadbc821d89dad6971f1c
refs/heads/master
2021-01-13T11:41:44.568197
2014-12-04T19:32:57
2014-12-04T19:32:57
null
0
0
null
null
null
null
UTF-8
Python
false
false
144
py
from collections import namedtuple Credential = namedtuple( "Credential", ["name", "login", "password", "login_url", "description"] )
[ "marcwebbie@gmail.com" ]
marcwebbie@gmail.com
4e17c5c8db150dade37e484fdbee51798ebed144
68e9209b35a754692edc4fd9723eca5997bb2a77
/src/links/migrations/0005_link_phno.py
41c1e2cec0a7e158e4ed5b235730b3fd14fbc821
[]
no_license
rachit98/Track_me_down
bc3a26062b9e3f03cb7c644e2018471b7af742fe
d65b61c49debe1bce78e760e9cbd5335a8e8a1bb
refs/heads/main
2023-04-27T03:18:19.856788
2021-05-15T01:58:07
2021-05-15T01:58:07
349,683,042
0
0
null
null
null
null
UTF-8
Python
false
false
382
py
# Generated by Django 3.2 on 2021-04-25 05:46 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('links', '0004_link_trigger'), ] operations = [ migrations.AddField( model_name='link', name='phno', field=models.CharField(blank=True, max_length=13), ), ]
[ "srvthapliyal97@gmail.com" ]
srvthapliyal97@gmail.com
b5cb685994c13b9e0c59cd123f829950c2a1ea60
138fccbc4a19bbeb0fac4fe031ff8e9288774b06
/code-platoon/week10/assessment-4/CL/lists/models.py
78a3329de4548ca91d8983ca391035eedab5b6bd
[]
no_license
Shadow073180/assessment_four
fe8b216fac25bf936622fd887f6814318cd81c2c
0cb32ddc22e2392c774fae99be44fe28b086d95c
refs/heads/master
2020-09-08T13:10:35.244993
2019-11-18T16:21:50
2019-11-18T16:21:50
221,141,805
0
0
null
null
null
null
UTF-8
Python
false
false
437
py
from django.db import models # Create your models here. class Catagory(models.Model): name = models.CharField(max_length=50) def __str__(self): return f'Name:{self.name}' class Post(models.Model): catagory = models.ForeignKey(Catagory, on_delete=models.CASCADE, related_name='posts') post_text = models.TextField() def __str__(self): return f'Catagory:{self.catagory} Post Text: {self.post_text}'
[ "david73180@gmail.com" ]
david73180@gmail.com
5c548ca4e3f1b9b5a6fb6fe6661c964b7f8b7b09
39b38554d36816717a3efe009ea0965eacadace7
/backend/code/api/serializers.py
f2b7e3d9dd1f7ea8b6c02944506fe817c32453bb
[]
no_license
LeoGalda/AplicacionesInformaticas
734238728602f047819c898f29bfb83fc8776578
8f7a81658877bbdb73f10252935c52481422f358
refs/heads/master
2020-04-08T05:02:42.892972
2018-11-29T02:38:22
2018-11-29T02:38:22
159,042,080
0
0
null
null
null
null
UTF-8
Python
false
false
534
py
from rest_framework import serializers from api.models import Trip, Port class PortSerializer(serializers.ModelSerializer): class Meta: model = Port fields = ('id', 'country', 'city', 'name') class TripSerializer(serializers.ModelSerializer): fromPort = PortSerializer(read_only=True) toPort = PortSerializer(read_only=True) class Meta: model = Trip fields = ('id', 'fromPort', 'toPort', 'cost', 'currency', 'departure', 'arrival', 'duration', 'scales', 'sourceURL')
[ "lucianorod1995@gmail.com" ]
lucianorod1995@gmail.com
1f7c1adda132df2fef69a331faac234627645ffc
641cfd90fb8ffd268645a04030be017cce9f37a3
/my_env/bin/easy_install-3.8
3ceaa01c6145c73c063bd7fa43d490c706ad3da6
[]
no_license
theodorCodes/ci-flask-recipe-app
6725a8c20d3ad4665a0455ac5de915c6cdebcd1f
ab828dae8f3448545a4f0824d7ab67ad02d33977
refs/heads/master
2023-08-11T19:00:27.162242
2021-09-21T10:52:55
2021-09-21T10:52:55
404,614,812
0
0
null
null
null
null
UTF-8
Python
false
false
282
8
#!/home/pixelbar/python-projects/flask-recipe-app/my_env/bin/python3.8 # -*- coding: utf-8 -*- import re import sys from setuptools.command.easy_install import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "laphan.fan@gmail.com" ]
laphan.fan@gmail.com
1e8151338afb925b5b825cade039b3d4bd143be1
7df4a749196d281a2f9572a74da1fa5363c3b6c3
/MLDeform/_training/train.py
8b37c78d1af36c1dfa1d0c621ebd21be2d06ec3f
[ "MIT" ]
permissive
serguei-k/MLDeform
6620608baad917f195095cb881556d2c446ebcc3
e9bc3620194d3cb35db9ee680a3c03793e7199b1
refs/heads/master
2020-05-24T06:36:01.423860
2018-07-10T17:06:12
2018-07-10T17:06:12
187,142,077
1
1
MIT
2019-05-17T03:44:08
2019-05-17T03:44:05
null
UTF-8
Python
false
false
8,266
py
import json import logging import os import numpy as np import pandas import tensorflow as tf from tensorflow import keras from tensorflow.contrib.keras.api.keras.layers import Dense from tensorflow.contrib.keras.api.keras.models import Sequential DEFAULT_JOINT_COLUMNS = ['rx', 'ry', 'rz', 'rw', 'tx', 'ty', 'tz'] logging.basicConfig() logger = logging.getLogger(__name__) logger.setLevel(logging.DEBUG) def read_inputs(directory): """Read the input_data from the given directory""" input_file = os.path.join(directory, 'input_data.json') with open(input_file) as f: input_data = json.load(f) return input_data def get_model(joint, verts, layers=3, activation='tanh', units=512, input_dim=100): """ Build a training model based on the joint and vertices :param joint: RotateTransform values of the joint :param verts: Deltas of the vertices :param layers: The number of layers to create. A minimum of 2 is required. :param activation: The type of activation. Defaults to tanh :param units: The units per layer if not the input/output :param input_dim: The input dimensions of each layer that is not input/output :return: The model, name of the input node, the name of the output_node """ model = Sequential() if layers < 2: logger.warning('A minimum of 2 layers is required') layers = 2 input_name = 'input_node' output_name = 'output_node' for layer in range(layers): if not layer: model.add(Dense(units, input_dim=joint.shape[1], activation=activation, name=input_name)) continue if layer == (layers - 1): model.add(Dense(verts.shape[1], activation='linear', name=output_name)) continue model.add(Dense(units, input_dim=input_dim, activation=activation, name="dense_layer_%s" % layer)) output_node = model.output.name input_node = '%s_input:0' % input_name return model, input_node, output_node def make_plot(history, output, show=True): """ Build a model from the trained keras model :param history: The output of the trained model :param output: Where to save the plot :param show: Whether to show the plot :return: The plot object """ import matplotlib.pyplot as plt plt.plot(history.history['mean_squared_error']) plt.plot(history.history['val_mean_squared_error']) plt.ylabel('mean_squared_error') plt.xlabel('epoch') plt.legend(['train', 'test'], loc='upper left') plt.savefig(output) if show: plt.show() return plt def normalize_features(df): """ Normalize a given pandas dataframe using the min and max values. This puts the cells in the range 0-1. NaNs are treated as 0 :param df: The pandas dataframe :return: Normalized Dataframe, a list of max values, a list of min values """ df_max = df.max() df_min = df.min() df_norm = (df-df_min)/(df_max-df_min) df_norm = df_norm.fillna(0) return df_norm, df_max.values.tolist(), df_min.values.tolist() def train(input_directory, normalize=False, rate=0.001, epochs=200, split=0.3, batch_size=None, show=True, plot=True, activation='tanh', units=512, input_dim=100, layers=3): """ Train the model from written data :param input_directory: The path to the directory where the data was written to :param normalize: Whether to normalize inputs and outputs :param rate: The learning rate. Lower rates are more accurate but slower. :param epochs: The number of epochs to train for. Higher is more accurate but slower and there are diminishing returns. :param split: The training/testing split. Defaults to 0.3 for 70% training 30% test. :param batch_size: The batch size to train with. :param show: Show the plot after each model is done training. :param plot: Whether to generate a plot for each training model. :param activation: What kind of activation to use. Defaults to tanh :param units: What units to use for intermediate layers. :param input_dim: Input dimensions to use for intermediate layers. :param layers: The number of layers to use. A minimum of 2 is enforced. :return: The path to the output json file """ # Read the data from disk. input_data = read_inputs(input_directory) csv_files = input_data.get('csv_files', []) joint_columns = input_data.get('input_fields', DEFAULT_JOINT_COLUMNS) for i, csv_file in enumerate(csv_files): # Prepare the filesystem to write file_name, _ext = os.path.splitext(os.path.basename(csv_file)) export_directory = os.path.join(input_directory, file_name) if not os.path.exists(export_directory): os.mkdir(export_directory) logger.info('Training for %s', file_name) # Read the csv of vert deltas to a pandas dataframe. df = pandas.read_csv(csv_file) df = df.drop_duplicates(joint_columns) if not df.shape[0] or df.shape[1] <= len(joint_columns): input_data.setdefault('models', []).append(None) continue # Shuffle the data and split it into input and output data. df.reindex(np.random.permutation(df.index)) joints = df.iloc[:, :len(joint_columns)] verts = df.iloc[:, len(joint_columns):] # Split the joint transform values. rot = joints.iloc[:, :-3] trans = joints.iloc[:, -3: ] # Normalize the data or use None as defaults verts_max, verts_min, trans_max, trans_min = None, None, None, None if normalize: logger.debug('Normalizing values') verts, verts_max, verts_min = normalize_features(verts) trans, trans_max, trans_min = normalize_features(trans) # Remerge the joint transform values. joints = pandas.concat([rot, trans], axis=1) # Start making the model. with tf.Session(graph=tf.Graph()) as session: # Create a model. model, input_name, output_name = get_model( joints, verts, layers=layers, units=units, input_dim=input_dim, activation=activation ) # Generate the optimizer and train the model adam = keras.optimizers.Adam(lr=rate) model.compile(loss='mse', optimizer=adam, metrics=['mse']) history = model.fit(joints, verts, epochs=epochs, validation_split=split, batch_size=batch_size) # Show the plots plot_image = None if plot: plot_image = os.path.join(export_directory, '%s.png' % file_name) make_plot(history, plot_image, show=show) export_path = os.path.join(export_directory, file_name) # Save the keras model as a tensorflow model saver = tf.train.Saver(save_relative_paths=True) saver.save(session, export_path) # Store the data in a dict model_data = { 'root': export_directory, 'meta': export_path + '.meta', 'input': input_name, 'output': output_name, 'plot': plot_image, 'normalized': normalize, 'trans_min':trans_min, 'trans_max':trans_max, 'verts_min':verts_min, 'verts_max':verts_max } # Then write this dict to the master dict input_data.setdefault('models', []).append(model_data) # Finally write this out to disk. output_data = os.path.join(input_directory, 'output_data.json') with open(output_data, 'w') as f: json.dump(input_data, f) return output_data if __name__ == '__main__': training_data = '/Users/dhruv/Library/Preferences/Autodesk/maya/training/' print(train(training_data, layers=3, show=True, plot=True, normalize=True))
[ "dhruvagovil@gmail.com" ]
dhruvagovil@gmail.com
95b905aebeb0e93f4afb9e9828013ed908026328
53e5fedbe98cd26496746b89a59c187027bca51c
/test_audio.py
12c1f8da99df0879ceb2be4486e5957e0bb590ed
[]
no_license
sanielfishawy/woofer_server
d9a1fb4a8f2cf0e98d54773d3d621c5514997952
0637e1a2d16dfd5b54acc71d49f4a49925f6e365
refs/heads/master
2023-01-08T09:48:02.024461
2020-11-12T05:26:11
2020-11-12T05:26:11
299,720,440
0
0
null
null
null
null
UTF-8
Python
false
false
191
py
import logging from audio.audio_alsa import AudioAlsa from audio.audio_sox import AudioSox logging.basicConfig(level=logging.DEBUG) a = AudioSox() a.setVolume(15) a.start() a.restart() pass
[ "elfishawy.sani@gmail.com" ]
elfishawy.sani@gmail.com
81908f769fcd375865f52aa05e260e800a9302c5
4a1e8886a32bf43916156b9d5893c15696f4271f
/biote_project/biote_init/__manifest__.py
46c66865aeeee5930853b6245b016f7618b12b0e
[]
no_license
JohnLYH/app
1cb116b24aff90ba9ad86288cf430d6d1bfcb116
2370cf00bb97c54d165601959480b0d9846ddb48
refs/heads/master
2020-05-14T18:17:11.777564
2019-04-03T08:49:04
2019-04-03T08:49:04
181,907,136
1
0
null
2019-04-17T14:20:34
2019-04-17T14:20:34
null
UTF-8
Python
false
false
831
py
{ 'name': '博益特-项目初始化', 'version': '1.0', 'category': 'biote', 'description': """ 功能介绍 ============== * 实现项目的一键创建功能 * 安装博益特项目的所有模块,按照模块依赖关系从叶子节点开始安装 * 导入初始化数据 * 进行基础配置 """, 'author': '刘明臣', 'website': 'http://openc2p.com', 'depends': [ 'product', 'stock', 'hr', 'l10n_cn', 'l10n_cn_small_business', 'form_no_edit', 'oa_workflow', 'biote_bank', 'biote_address', 'biote_product', 'biote_auth', 'biote_contract', 'biote_partner', 'biote_quality', 'biote_purchase' ], 'data': [], 'installable': True, 'auto_install': False, }
[ "735757527@QQ.COM" ]
735757527@QQ.COM
ce6862b68ef247ae4a9b3d77757f65d1e7247b3c
ca4115506837642129dfe838fd7f67f0abd23c7b
/ms-pacman.py
9527bca24816bc736ef8a3d1ca52f510e443cc1d
[]
no_license
mathewjhan/UMassML_Ms-Pacman
59d43889e76afb8c0f6cc627b8d8651e29bc4ce6
63c02dd4e41968e704136f4d6a6d7936c26d81eb
refs/heads/master
2022-12-16T19:09:17.059947
2020-09-28T00:18:57
2020-09-28T00:18:57
299,143,016
0
0
null
null
null
null
UTF-8
Python
false
false
5,471
py
import gym import matplotlib.pyplot as plt import torch.nn as nn import torch import random from collections import deque from PIL import Image from skimage.transform import resize from skimage.color import rgb2gray from skimage.util import crop import numpy as np IMAGE_RESIZE = (86, 80) EXPLORATION_MAX = 1.0 EXPLORATION_MIN = 0.01 EXPLORATION_DECAY = 0.99995 EPISODES = 500 BATCH_SIZE = 32 GAMMA = 0.9 # i have no idea wat im doing lol # Flatten 2D output class Lin_View(nn.Module): def __init__(self): super(Lin_View, self).__init__() def forward(self, x): return x.view(x.size()[0], -1) class DQN_Agent: def __init__(self): self.action_space = 9 self.observation_space = IMAGE_RESIZE self.exploration_rate = EXPLORATION_MAX self.memory = deque(maxlen=500000) self.lr = 10e-3 # slightly modified deepmind architecture self.model = nn.Sequential( nn.Conv2d(1,32,8,4), nn.LeakyReLU(), nn.Conv2d(32,64,4,2), nn.LeakyReLU(), nn.Conv2d(64,64,3,1), nn.LeakyReLU(), Lin_View(), nn.Linear(64*7*6,9) ) self.loss_function = nn.MSELoss() self.optimizer = torch.optim.Adam(self.model.parameters(), lr = self.lr) if(torch.cuda.is_available()): self.model.cuda() def remember(self, state, action, reward, next_state, done): self.memory.append((state, action, reward, next_state, done)) # Epsilon greedy def act(self, state): if(np.random.rand() < self.exploration_rate): return random.randrange(self.action_space) state = torch.from_numpy(state).reshape(1, 1, *(IMAGE_RESIZE)).cuda().float().detach() q_values = self.model(state) values, indices = torch.max(q_values, 1) return indices.item() # Experience replay def replay(self): if len(self.memory) < BATCH_SIZE: return batch = random.sample(self.memory, BATCH_SIZE) for state, action, reward, state_next, terminal in batch: s = torch.from_numpy(state).reshape(1, 1, *(IMAGE_RESIZE)).cuda().float().detach() sn = torch.from_numpy(state_next).reshape(1, 1, *(IMAGE_RESIZE)).cuda().float().detach() # Penalize no reward a little bit to encourage # more movement (not heavily tested) temp = reward if(temp == 0): temp -= 1 q_update = temp if(not terminal): q_update = temp + GAMMA * torch.max(self.model(sn), 1)[0].item() outputs = self.model(s) target = torch.zeros(1,9).cuda() target[:,action] = q_update self.optimizer.zero_grad() loss = self.loss_function(outputs, target) loss.backward() self.optimizer.step() self.exploration_rate *= EXPLORATION_DECAY self.exploration_rate = max(EXPLORATION_MIN, self.exploration_rate) # Create average image of past 4 frames # track motion of pacman/ghosts def buffered_image(deque): first = np.zeros(IMAGE_RESIZE) for im in deque: first += im return ((1/len(deque)) * first).astype(np.uint8) def run(): env = gym.make('MsPacman-v0') # use pygame to play game #play(env) # Keep track of rewards rew_list = list() rAll = 0 # Keep a buffer for previous 4 frames # One buffer for current state and # another for the next state dqn = DQN_Agent() buff_cur = deque(maxlen=4) buff_next = deque(maxlen=4) # Training for i in range(EPISODES): s = env.reset() d = False # Rescale image to 84x80 and convert to grayscale # cuts out bottom part of the image with score s = (rgb2gray(resize(s[0:172, 0:160], IMAGE_RESIZE, anti_aliasing=True, order=0))*255).astype(np.uint8) t = 0 next_time = 0 buff_next.append(s) while(d != True): env.render() buff_cur.append(s) if(len(buff_cur) != 4): a = env.action_space.sample() else: buff_s = buffered_image(buff_cur) a = dqn.act(buff_s) # Debugging # img = Image.fromarray(buff_s) # img.save('test.png', 'PNG') s1,r,d,_ = env.step(a) s1 = (rgb2gray(resize(s1[0:172, 0:160], IMAGE_RESIZE, anti_aliasing=True, order=0))*255).astype(np.uint8) buff_next.append(s1) if(len(buff_next) != 4 or len(buff_cur) != 4): dqn.remember(s, a, r, s1, d) else: buff_s1 = buffered_image(s1) dqn.remember(buff_s, a, r, buff_s1, d) # Every 2-4 frames experience replay to speed up training # instead of every single frame if(t == next_time): t = 0 next_time = random.randint(2,4) dqn.replay() else: t += 1 rAll += r s = s1 rew_list.append(rAll/(i+1)) env.render() print("Episode: ", i) print("Reward sum: ", rAll/(i+1)) print("Final reward sum: ", rAll/EPISODES) plt.plot(rew_list) plt.show() if(__name__ == '__main__'): run()
[ "mathewjhan@gmail.com" ]
mathewjhan@gmail.com
d8b4b6b4ca291c33e7ac4985205e6e320c3265a1
40c6b1c6590fe50b74d54e72865ee22130bcaa1d
/Examples/factors of n.py
ddf80eb38201fbeb07226a6cccc23eca7bf09990
[]
no_license
uday3445/python-al-and-ds
0ab5519613ce72fce9a87fecd7bfa3839560cd9e
676c8e559e75d17ce9ced7ca165ad3f58fa7cf1b
refs/heads/lists
2020-04-29T03:24:26.871844
2019-03-22T15:51:21
2019-03-22T15:51:21
175,808,484
2
1
null
2019-03-22T15:51:22
2019-03-15T11:33:45
Python
UTF-8
Python
false
false
240
py
def prime(n): for i in range(2,n+1): k=0 for a in range(2,i//2+1): if i%a==0: k=k+1 if (k<=0): print(i) return a j=(prime(10)) prime(j)
[ "kanth.mallampalli@gmail.com" ]
kanth.mallampalli@gmail.com
2a03407ca878f62a3697d00f8967417d6532e325
baf13dbe667090b7dd1db36001d0ddbf733859d0
/account/flows/admin/nodes/node1.py
5527a0443c371e96f3757e8c057d162e34d2af61
[]
no_license
longguikeji/arkfbp-py-server-template
13f83295dbb1ff120d7eecfe38790e613075eff4
40ed4b7d4a632928b69bd2fd8788d5ea5a979049
refs/heads/main
2023-01-18T20:56:14.011113
2020-11-25T04:21:29
2020-11-25T04:21:29
315,193,502
0
0
null
null
null
null
UTF-8
Python
false
false
202
py
from arkfbp.node import FunctionNode # Editor your node here. class Node1(FunctionNode): def run(self, *args, **kwargs): print(f'Hello, Admin Permission Check Done!') return True
[ "97390483@qq.com" ]
97390483@qq.com
efff5094a1d12adcda916b892e95cd4536b771ca
560562251ec65041fcb3d3f3dd98d5ee4f1d4708
/backend/model/freshman.py
ebed38e1cd45961ff4ef0ab91dd663f3dc571e53
[]
no_license
Gavin-YYC/licaizhinanzhen
8badcd85bf8e0296f2a669bd63ff934ccf92a868
1ee185c01836978178d58453409c012ea5f65c9d
refs/heads/master
2021-01-02T08:55:03.708536
2017-08-02T09:28:12
2017-08-02T09:28:12
99,096,944
0
0
null
null
null
null
UTF-8
Python
false
false
729
py
# coding=utf-8 from flask import g class FreshmanModel( object ): table_name = 'freshman' def get_freshman_list( self ): c = g.db.cursor() c.execute("select id, name, icon, base_yields, time_long, min_invest, home_url from {0}".format(self.table_name)) res = list(c.fetchall()) output = [] for index in range(len(res)): output.append({ 'id': res[index][0], 'name': res[index][1], 'icon': res[index][2], 'base_yields': res[index][3], 'time_long': res[index][4], 'min_invest': res[index][5], 'home_url': res[index][6] }) return output
[ "q414625852@163.com" ]
q414625852@163.com
455102af74ef3eaba07ecf3cfb337d017697b439
195ea2e0bfcdb1788e33e3a1f2e19fe068ea618a
/test scripts/test_process.py
9d2725fada78436ce6f199b50c3c07b3481c8edf
[]
no_license
asoh90/prodplatformsapp
889cad46d29df897a90efa0d35ac9210e8cc5593
fdae547ed84fb31e5d6a75ad816809f7c103bfd9
refs/heads/master
2022-12-11T00:59:00.348041
2020-05-11T08:44:21
2020-05-11T08:44:21
168,660,165
0
0
null
2022-12-08T02:29:19
2019-02-01T07:37:02
Python
UTF-8
Python
false
false
1,035
py
from multiprocessing import Process # import test_queue import threadpool import time def test(test_list, i): time.sleep(2) test_list.append(i) print("Test List: {}".format(test_list)) # def queue_test(queue, test_list, i): # queue.put(test(test_list, i)) # if __name__ == "__main__": # test_list = [] # processes = [] # # process = Process(target=queue_test, args=(test_queue.queue, test_list, 1)) # # process.start() # # process.join() # for i in range(100): # process = Process(target=queue_test, args=(test_queue.queue, test_list, i)) # process.start() # processes.append(process) # print("Joining processes") # process_joined = 0 # for p in processes: # p.join() # process_joined += 1 # print(process_joined) # print("Final A: {}".format(test_list)) test_list = [] pool = threadpool.ThreadPool(5) for i in range(10): pool.add_task(test, test_list, i) pool.wait_completion()
[ "alvinsoh@alvins-mbp.lan" ]
alvinsoh@alvins-mbp.lan
8b60df380f7c1c450bcef9ba94f15dbd4810e34d
6cf034ff05952543d10ea5ffca459336c5aebf25
/openweather/forms.py
8723bcf1717b0a43a1f8e88de6f4c89d6148171d
[]
no_license
Ngrbac/appli
42351fc4aa82a78d4454578490ab2c256b08f027
e6d056284393d0d0039419f19d24a0ac3cfa17a1
refs/heads/master
2022-12-11T21:50:55.660182
2020-02-01T19:23:16
2020-02-01T19:23:16
234,822,074
0
0
null
2022-12-08T03:28:08
2020-01-19T01:30:25
Python
UTF-8
Python
false
false
168
py
from django import forms ## Forma za pretraživanje novih gradova. class SearchForm(forms.Form): name = forms.CharField(label='Naziv grada', max_length=100)
[ "ngrbac@unipu.hr" ]
ngrbac@unipu.hr
4562f762f7c2f785c6bc078f740bb5d039470c03
ba39decdfe1a571f36f7ac40f9e92b8189d52650
/MapReduce/task8/map.py
d1a4b77958d641af6822dfcc0ec6036943bba029
[]
no_license
gracejhan/MapReduce
d10b8352e92a7d8d4cd265afae79568611accbe5
96a46069460a5b20f8d8ed9369b028c6f0203a8f
refs/heads/master
2020-03-07T07:45:09.607639
2018-04-05T15:13:06
2018-04-05T15:13:06
127,357,596
0
0
null
null
null
null
UTF-8
Python
false
false
619
py
#!/usr/bin/env python # Big Data Assignment 1 - Task8 # Jungwoo Han (jh5990@nyu.edu) import csv import sys import string # input comes from STDIN (standard input) for line in csv.reader(sys.stdin,quotechar='"', delimiter=',',quoting=csv.QUOTE_ALL, skipinitialspace=True): entry = line vehicle_make = entry[20] vehicle_color = entry[19] if not vehicle_make: vehicle_make = 'NONE' if not vehicle_color: vehicle_color = 'NONE' if vehicle_make: print('vehicle_make^ %s\t1' % (vehicle_make)) if vehicle_color: print('zvehicle_color^ %s\t1' % (vehicle_color))
[ "noreply@github.com" ]
gracejhan.noreply@github.com
b4721adef76ad812a449cf6dbf2b9d193fb0b620
b9652c311ae05d8d2ff90ec7e6f80f81165f2d68
/tests/test_calculations.py
ff25cac5b9332c4d821b4b4538fe30e658d78be0
[]
no_license
3ZA/loan-calc
b0084f7a276c08e284adf4872b577085ef56984b
ce16cb0629162ab3e3cef5c9611a03bca1793443
refs/heads/master
2020-05-03T06:02:56.767811
2019-04-10T22:59:51
2019-04-10T22:59:51
178,464,083
0
0
null
null
null
null
UTF-8
Python
false
false
1,322
py
import unittest from random import random, randint from calculations import calculations from utils import exceptions from utils.exceptions import LessThanZeroException print(LessThanZeroException) class TestRepayments(unittest.TestCase): def test_monthly_repayment_with_negative_value_raises_exception(self): salary = -5 self.assertRaises( exceptions.LessThanZeroException, calculations.calculate_monthly_repayment, salary ) def test_monthly_repayment_returns_zero_if_below_threshold(self): min_input_value = 0 max_input_value = calculations.REPAYMENT_THRESHOLD for i in range(0, 3): value = random() scaled_value = min_input_value + ( value * (calculations.REPAYMENT_THRESHOLD - min_input_value) ) with self.subTest(input_salary=scaled_value): self.assertEqual( calculations.calculate_monthly_repayment(scaled_value), 0.00 ) def test_monthly_repayment_returns_valid_calculation(self): value = calculations.REPAYMENT_THRESHOLD + 1200 self.assertEqual( calculations.calculate_monthly_repayment(value), 100 * calculations.REPAYMENT_RATE )
[ "jasonchc@hotmail.co.uk" ]
jasonchc@hotmail.co.uk
718b82e4d5381f1122ad68ff3fed2f10741713ef
225da91ed910c16d6dc39de3da55b09ed81dddc5
/resistors/num_int.py
8b35a656c18e9764914a40a8fd38280de14a9089
[]
no_license
mchouza/mchouza
52c395a60969488b3161b8aa646c41a637605c0e
7356f4ff33fd54f9d8a4c35d3259051b7a99f82a
refs/heads/master
2021-11-14T04:29:10.451221
2021-11-01T01:35:38
2021-11-01T01:35:38
35,064,707
3
2
null
null
null
null
UTF-8
Python
false
false
503
py
from math import cos, pi # integrates \frac{1}{4\pi^2} \int_0^{2\pi} dp \int_0^{2\pi} dq # \frac{1 - \cos(2 p + q)}{2 - \cos p - \cos q} using n x n points def calc_num_integral(n): accum = 0 f = lambda p, q: (1 - cos(2*p + q)) / (2 - cos(p) - cos(q)) for i in range(n): for j in range(n): accum += f((i + 0.5)*2*pi / n, (j + 0.5)*2*pi / n) return accum / (n*n) # the 4 \pi^2 factors cancel if __name__ == '__main__': print calc_num_integral(100)
[ "mchouza@746d65ee-141b-11df-a6b0-3b3dab745ba8" ]
mchouza@746d65ee-141b-11df-a6b0-3b3dab745ba8
90508179fd51bd863f7eb18e3fcdd9b9d8f1088f
47756da23748ae2f3e4926a53b38c4a65e3abaa1
/python/src/image_preprocessing.py
0e892db445e4cd03b9f34612258aeedeb1df6889
[]
no_license
Aravind2503/Document-detection
fcd1cce7f4d2c44aa9a95fcee9b5cbb95326d662
ad0eee6c94a912a07460c8b00002a6b738bf9eaa
refs/heads/main
2023-03-19T17:08:22.660538
2021-02-28T11:06:55
2021-02-28T11:06:55
338,402,902
0
1
null
2021-02-17T14:20:41
2021-02-12T18:41:10
Python
UTF-8
Python
false
false
1,936
py
import cv2 import numpy as np def biggestContour(contours): biggest = np.array([]) max_area = 0 for i in contours: area = cv2.contourArea(i) if area > 5000: peri = cv2.arcLength(i, True) approx = cv2.approxPolyDP(i, 0.02 * peri, True) if area > max_area and len(approx) == 4: biggest = approx max_area = area return (biggest, max_area) def order_points(pts): pts = pts.reshape((4, 2)) newpts = np.zeros((4, 1, 2), dtype=np.int32) add = pts.sum(1) newpts[0] = pts[np.argmin(add)] newpts[3] = pts[np.argmax(add)] diff = np.diff(pts, axis=1) newpts[1] = pts[np.argmin(diff)] newpts[2] = pts[np.argmax(diff)] return newpts def persp_trans(filepath): # Load image, convert to grayscale, and find edges image = cv2.imread(filepath) # gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) # thresh = cv2.threshold(gray, 0, 255, cv2.THRESH_OTSU # + cv2.THRESH_BINARY)[1] # (width, height) = (600, 350) # # Find contour and sort by contour area # cnts = cv2.findContours(thresh, cv2.RETR_EXTERNAL, # cv2.CHAIN_APPROX_SIMPLE) # cnts = (cnts[0] if len(cnts) == 2 else cnts[1]) # cnts = sorted(cnts, key=cv2.contourArea, reverse=True) # # perceptive transform # (b, m) = biggestContour(cnts) # a = order_points(b) # pts1 = np.float32(a) # pts2 = np.float32([[0, 0], [width, 0], [0, height], [width, # height]]) # matrix = cv2.getPerspectiveTransform(pts1, pts2) # output = cv2.warpPerspective(image, matrix, (width, height)) output = image outpath = '../resources/preprocessing_output/out.jpeg' cv2.imwrite(outpath, output) return outpath if __name__ == '__main__': # biggestContour() # order_points() persp_trans('example3.jpeg')
[ "s.aravind2000@gmail.com" ]
s.aravind2000@gmail.com
d0e08edcca5863236e3b03ec557b10a3e8b8c1d6
d8d7fd31c0a12aed9c290b0b1970e6851f8afd4f
/app.py
d397b48baf7f2a6e0a72f218459b6269edf43ff4
[]
no_license
Axioma42/sqlalchemy_Surfs_Up-
fa6a377655226346f8df15fe95986d049177d6dc
9b19f4dfb577d2101b60af11666a512f6fbe8338
refs/heads/master
2020-06-30T02:31:10.480972
2019-08-12T06:10:19
2019-08-12T06:10:19
200,693,437
0
0
null
null
null
null
UTF-8
Python
false
false
3,158
py
from flask import Flask, jsonify, request import datetime as dt import sqlalchemy from sqlalchemy.ext.automap import automap_base from sqlalchemy.orm import Session from sqlalchemy import create_engine, func, desc import numpy as np engine = create_engine("sqlite:///hawaii.sqlite", echo=False, connect_args = {"check_same_thread":False}) Base = automap_base() Base.prepare(engine, reflect=True) Measurement = Base.classes.measurement Station = Base.classes.station session = Session(engine) minus_365 = dt.date(2017, 8, 23) - dt.timedelta(days=365) app = Flask(__name__) # List all routes that are available. @app.route("/") def home(): return ( "<h1>Hawaii Weather App</h1>" f"Available Routes:<br/>" f"/api/v1.0/precipitation<br/>" f"/api/v1.0/stations<br/>" f"/api/v1.0/tobs<br/>" f"/api/v1.0/<start><br/>" f"/api/v1.0/<start>/<end>" ) # Convert the query results to a Dictionary using date as the key and prcp as the value. @app.route("/api/v1.0/precipitation") def precipitation(): precipitation_api = session.query(Measurement.date, Measurement.prcp).filter(Measurement.date >= minus_365).all() precipitation_dict = dict(precipitation_api) # Return the JSON representation of your dictionary. return jsonify(precipitation_dict) # Return a JSON list of stations from the dataset. @app.route("/api/v1.0/stations") def stations(): stations_api = session.query(Measurement.station).group_by(Measurement.station).all() station_list = list(np.ravel(stations_api)) return jsonify(station_list) # Query for the dates and temperature observations from a year from the last data point. @app.route("/api/v1.0/tobs") def tobs(): tobs_api = session.query(Measurement.date, Measurement.tobs).filter(Measurement.date >= minus_365).all() tobs_list = list(tobs_api) # Return a JSON list of Temperature Observations (tobs) for the previous year. return jsonify(tobs_list) # Return a JSON list of the minimum temperature, the average temperature, and the max temperature for a given start or start-end range. # When given the start only, calculate TMIN, TAVG, and TMAX for all dates greater than and equal to the start date. # When given the start and the end date, calculate the TMIN, TAVG, and TMAX for dates between the start and end date inclusive. @app.route("/api/v1.0/<start>") def start_date(start): start_api = session.query(Measurement.date, func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)).filter(Measurement.date >= start).group_by(Measurement.date).all() start_list = list(start_api) return jsonify(start_list) @app.route("/api/v1.0/<start>/<end>") def start_to_end(start, end): start_to_end_api = session.query(Measurement.date, func.min(Measurement.tobs), func.avg(Measurement.tobs), func.max(Measurement.tobs)).filter(Measurement.date >= start).filter(Measurement.date <= end).group_by(Measurement.date).all() start_to_end_list = list(start_to_end_api) return jsonify(start_to_end_list) # Run the app. if __name__ == '__main__': app.run(debug = True)
[ "noreply@github.com" ]
Axioma42.noreply@github.com
aae10d2d3e2572eeab5f5fdec0b62b32fe83d174
f18e2127c8dc525e1fc7db5973fc59a2b97a5a45
/forum/migrations/0001_initial.py
33fd7eefbe834e01d4f0bc8676009be9c437d26b
[]
no_license
MuhammadKhan17/SchoolManagement
fd76bc8d402afb457d3625204e27ba124b2ae89c
e6c3cf759ae78e10a0376f92115c46498aba7f2b
refs/heads/master
2023-04-08T11:46:07.174813
2021-04-16T21:10:25
2021-04-16T21:10:25
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,048
py
# Generated by Django 3.1.4 on 2021-03-04 00:49 from django.conf import settings from django.db import migrations, models import django.db.models.deletion import django.utils.timezone class Migration(migrations.Migration): initial = True dependencies = [ ('school', '0012_submission_content'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='DiscussionThread', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=255)), ('creation_date_time', models.DateTimeField(default=django.utils.timezone.now)), ('author', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL)), ('course', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='school.course')), ], ), ]
[ "jacobcuke@gmail.com" ]
jacobcuke@gmail.com
27b895762eccf8652449fddf5adf864552c5317d
db96745258f93e24a44ea1348398be42f46c1636
/DPAnalysis_Step3/signalcomparison.py
d1922f88a0375ce2a31717d86596e73eff0bac70
[]
no_license
sigamani/EXO
686182f2863efa0e279d7613256a656dcc83ce28
b48403180992e7dd6a8988f9acf65e1623e4e647
refs/heads/master
2020-12-30T11:15:26.834386
2015-07-13T09:16:02
2015-07-13T09:16:02
18,436,419
0
0
null
2014-08-25T11:31:36
2014-04-04T11:07:59
C++
UTF-8
Python
false
false
363
py
from ROOT import * def function(): files = ["./v18/GMSB_L180-CTAU10.root","./v18/GMSB_L180-CTAU50.root","./v18/GMSB_L180-CTAU250.root","./v18/GMSB_L180-CTAU500.root"] vecfiles = [] for item in files: temp = TFile.Open(item) vecfiles.append(temp) def main(): function() if __name__ == "__main__": main()
[ "sigamani@cern.ch" ]
sigamani@cern.ch
357a3881574a1ff7b4de4ebbde78171bd9235d0d
4607c3869cfcef24518e817a6e31d29b01eb4fee
/project/users/forms.py
c33f47becc11ddcd67199a9b276d90c850e462e9
[]
no_license
fa8chai/ClickTime
916902336d552498d2fedf41df08fc6304a82e81
18992f858a2354cdce6f6f38fccd7cfc9db0d912
refs/heads/master
2023-06-03T22:53:34.009319
2021-06-11T23:46:52
2021-06-11T23:46:52
280,895,226
0
0
null
2020-07-22T14:27:34
2020-07-19T15:33:03
Python
UTF-8
Python
false
false
2,611
py
from django.contrib.auth.forms import UserCreationForm, UserChangeForm, forms, PasswordChangeForm from .models import * class CustomPasswordResetForm(PasswordChangeForm): old_password = forms.CharField(max_length=20, widget=forms.PasswordInput) new_password1 = forms.CharField(max_length=20, widget=forms.PasswordInput) new_password2 = forms.CharField(max_length=20, widget=forms.PasswordInput) old_password.widget.attrs.update({'placeholder':('Old password'),'class':('form-control')}) new_password1.widget.attrs.update({'placeholder':('Password'),'class':('form-control')}) new_password2.widget.attrs.update({'placeholder':('Repeat password'),'class':('form-control')}) class CustomUserCreationForm(UserCreationForm): class Meta(UserCreationForm): model = CustomUser fields = ('first_name', 'last_name', 'email','password1','password2') def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['first_name'].widget.attrs.update({'autofocus': True,'placeholder':('First Name'),'class':('form-control')}) self.fields['last_name'].widget.attrs.update({'placeholder':('Last Name'),'class':('form-control')}) self.fields['email'].widget.attrs.update({'placeholder':('Email'),'class':('form-control')}) self.fields['password1'].widget.attrs.update({'placeholder':('Password'),'class':('form-control')}) self.fields['password2'].widget.attrs.update({'placeholder':('Repeat password'),'class':('form-control')}) class CustomUserChangeForm(UserChangeForm): class Meta: model = CustomUser fields = ('email',) class EmailChangeForm(forms.ModelForm): class Meta: model = CustomUser fields=['email'] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['email'].widget.attrs.update({'class':('form-control'),}) def clean_email(self): email = self.cleaned_data['email'] if self.instance.pk is not None and self.instance.email == email: raise forms.ValidationError('This is your current email address!') if CustomUser.objects.filter(email=email).exists(): raise forms.ValidationError(f'Email address {email} already exists!') return email def save(self, *args, **kwargs): user = self.instance user.email = self.cleaned_data['email'] user.is_active = False user.profile.email_confirmed = False user.save() return user
[ "anne.wi.sw@gmail.com" ]
anne.wi.sw@gmail.com
a44f223635db7b358b49ccb6ca7923250c316bad
be5ea20226c37d81f1ccb2f704d8825d36e88765
/Exams/2-apr-2020/skeleton/tests/test_magic_card.py
75d8d74d391b2baf58d8a14b44e8e5b922aabf4f
[]
no_license
dimDamyanov/PythonOOP
3845e450e5a48fef4f70a186664e07c0cd60e09b
723204f5b7e953874fac9314e48eb1d1628d6ff5
refs/heads/main
2023-04-07T18:00:36.735248
2021-04-19T20:57:14
2021-04-19T20:57:14
341,329,346
0
0
null
null
null
null
UTF-8
Python
false
false
1,231
py
import unittest from project.card.magic_card import MagicCard class TestMagicCard(unittest.TestCase): def setUp(self) -> None: self.magic_card = MagicCard('Card') def test_init_attrs_set(self) -> None: self.assertEqual(self.magic_card.name, 'Card') self.assertEqual(self.magic_card.damage_points, 5) self.assertEqual(self.magic_card.health_points, 80) def test_init__when_name_invalid__expect_exception(self) -> None: with self.assertRaises(ValueError) as context: MagicCard('') self.assertEqual(context.exception.args[0], 'Card\'s name cannot be an empty string.') def test_damage_points_setter__expect_exception(self) -> None: with self.assertRaises(ValueError) as context: self.magic_card.damage_points = -10 self.assertEqual(context.exception.args[0], 'Card\'s damage points cannot be less than zero.') def test_health_points_setter__expect_exception(self) -> None: with self.assertRaises(ValueError) as context: self.magic_card.health_points = -10 self.assertEqual(context.exception.args[0], 'Card\'s HP cannot be less than zero.') if __name__ == '__main__': unittest.main()
[ "dim.damianov@gmail.com" ]
dim.damianov@gmail.com
09f33b4b9c59b00fea172a46ea194beb6fd4d433
2d68fe6a77a3db51203091128fa9f6a7602e0919
/setup.py
cc8f9830a7bedd46ae9d3252d84c85bc75a380bb
[ "MIT" ]
permissive
StalkerSanya/robot
3b078bf478bf41a33519fb7a7aae6056ff7e95fc
dd19365be285bd85b2716fd104df095605dbf609
refs/heads/master
2020-08-09T03:00:45.441915
2018-08-01T19:36:52
2018-08-01T19:36:52
null
0
0
null
null
null
null
UTF-8
Python
false
false
655
py
import setuptools with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( name="robot", version='0.3.0', author="Sherevv", author_email="sherevv@gmail.com", description="Robot on the cave field", long_description=long_description, include_package_data=True, url="https://github.com/sherevv/robot", packages=setuptools.find_packages(), classifiers=( "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ), install_requires=[ 'numpy==1.14.3', 'matplotlib==2.2.2' ] )
[ "sherevv@gmail.com" ]
sherevv@gmail.com
ffc6b550502b5f66f9b18016a45afda9c0e06cd1
d964cf33c56cbc98cacff6cc89aa63ce44dd29db
/algorithms.py
ecaaa06584a59a7ed8c86780bb8ce32704a7e5d0
[]
no_license
ZRmn/kioki
257dacf3be480cc1df4e3ed1489be7052dee705c
44af42caa5fec11eb2831d9c60bd014f915862dd
refs/heads/master
2022-04-12T00:45:43.050986
2020-03-13T21:58:24
2020-03-13T21:58:24
247,168,155
0
0
null
null
null
null
UTF-8
Python
false
false
2,435
py
def euclid_gcd(a, b): return euclid_gcd(b, a % b) if b > 0 else a def euclid_extended_gcd(a, b): if b == 0: return 1, 0, a y, x, g = euclid_extended_gcd(b, a % b) return x, y - (a // b) * x, g def binary_gcd(a, b): k = 1 while a != 0 and b != 0: while a % 2 == 0 and b % 2 == 0: a /= 2 b /= 2 k *= 2 while a % 2 == 0: a /= 2 while b % 2 == 0: b /= 2 if a >= b: a -= b else: b -= a return int(b * k) def euler_function(n): result = n i = 2 while i * i <= n: if n % i == 0: while n % i == 0: n /= i result -= result / i i += 1 if n > 1: result -= result / n return int(result) def reciprocal(n, module): return n ** (euler_function(module) - 1) % module def is_prime(num): if num == 2: return True if num < 2 or num % 2 == 0: return False for n in range(3, int(num ** 0.5) + 2, 2): if num % n == 0: return False return True def is_coprime(a, b): if a == b: return a == 1 elif a > b: return is_coprime(a - b, b) else: return is_coprime(b - a, a) def fast_exponent(a, z, n): a1 = a z1 = z x = 1 while z1 != 0: while z1 % 2 == 0: z1 = z1 / 2 a1 = a1 ** 2 % n z1 = z1 - 1 x = x * a1 % n return x def hash(message_as_numbers, n, start=31): h = start for i in message_as_numbers: h = (h + i) ** 2 % n return h def rotate_left_matrix(matrix): rotated_matrix = [] for j in range(len(matrix[0])): column = [] for i in range(len(matrix)): column += [matrix[i][j]] rotated_matrix.insert(0, column) return rotated_matrix def rotate_matrix(matrix): rotated_matrix = [] for j in range(len(matrix[0])): column = [] for i in range(len(matrix)): column += [matrix[i][j]] column.reverse() rotated_matrix += [column] return rotated_matrix def transpose(matrix): rotated_matrix = [] for j in range(len(matrix[0])): column = [] for i in range(len(matrix)): column += [matrix[i][j]] rotated_matrix += [column] return rotated_matrix
[ "githubZRmn4815162342" ]
githubZRmn4815162342
30e915a9ae90b78149319f2cc6962f8eb9b7a0e7
6ab8488925593a7ca8ed4728c471a5aeda099903
/test/test_web_scrapper_walmart.py
67079301652500334d8898e80128e916798031bf
[ "MIT" ]
permissive
pragna98/cheapBuy
8c6ecb618758c96036349f6ba3df2d67d7386a90
b545a10db2950c238fa74ca50c2401a2a4887be1
refs/heads/main
2023-08-31T16:57:41.500424
2021-11-01T18:12:08
2021-11-01T18:12:08
423,561,191
0
0
MIT
2021-11-01T17:45:48
2021-11-01T17:45:47
null
UTF-8
Python
false
false
1,001
py
import os import sys sys.path.append(os.path.abspath('../../')) from cheapBuy.code.web_scrappers.web_scrapper_walmart import scrap_walmart, get_url_walmart from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager def setup_get_driver_details(): options = webdriver.ChromeOptions() options.headless = True driver = webdriver.Chrome(options=options, executable_path=ChromeDriverManager().install()) return driver def test_get_url_walmart_1(): item_name = "SAMSUNG Galaxy Tab A7 32GB" assert get_url_walmart(item_name) == "https://www.walmart.com/search?q=SAMSUNG+Galaxy+Tab+A7+32GB" def test_get_url_walmart_2(): assert get_url_walmart("Brita Longlast Replacement Filters Dispensers") == "https://www.walmart.com/search?q=Brita+Longlast+Replacement+Filters+Dispensers" def test_scrap_walmart(): item_name = "Fresh Strawberries, 1 lb" results = scrap_walmart(setup_get_driver_details(), item_name) assert results is not None
[ "43135408+kalgeekotak99@users.noreply.github.com" ]
43135408+kalgeekotak99@users.noreply.github.com
fb85dbf9c5691a9bb4f2cc4c22786f45acba9619
9ab0e0f446be9d1840090e322ec5a5728a1ecdb6
/assembly-and-read-composition/FilterBedWithElementList.py
78ae2df8c83668d7e40e2e7ad61bef80cc61b678
[]
no_license
harvardinformatics/TranscriptomeAssemblyEvaluation
44412a646cb0766153afbccbb23204ee15ce7abc
5563e12ff3c20032c02196bf5a51d9f8eb6f815c
refs/heads/master
2021-03-22T04:42:10.448579
2020-04-28T15:02:37
2020-04-28T15:02:37
121,285,992
8
2
null
null
null
null
UTF-8
Python
false
false
1,858
py
""" creator: adam h freedman, afreedman405 at gmail dot com date: 2016.09.26 This script filters or extracts rows from a bed file based upon strings in particular columns. E.g. to extract only gene level entries, for the purpose of getting gene boundaries """ import argparse def search_bed_line(linein,column,elements): bedlist=linein.strip().split() if bedlist[column-1] in elements: return True else: return False if __name__=="__main__": parser = argparse.ArgumentParser(description="options for filtering bed file") parser.add_argument('-i','--bedin',dest='bedfile',type=str,help='input bed file') parser.add_argument('-c','--column',dest='filt_column',type=int,help='column, will be converted to python zero-based') parser.add_argument('-e','--elements',action='append',help='element used to filter, can be invoked multiple times to create list') parser.add_argument('-x','--exclude',action='store_true') opts = parser.parse_args() print opts counter=0 bedin=open(opts.bedfile,'r') if opts.exclude==True: bedout=open('excluded_%s_%s' % ('.'.join(opts.elements),opts.bedfile),'w') for line in bedin: counter+=1 if counter%10000==0: print 'processing bed line...',counter eval_bedline=search_bed_line(line,opts.filt_column,opts.elements) if eval_bedline!=True: bedout.write(line) else: bedout=open('included_%s_%s' % ('.'.join(opts.elements),opts.bedfile),'w') for line in bedin: counter+=1 if counter%10000==0: print 'processing bed line...',counter eval_bedline=search_bed_line(line,opts.filt_column,opts.elements) if eval_bedline==True: bedout.write(line) bedout.close()
[ "adamfreedman@fas.harvard.edu" ]
adamfreedman@fas.harvard.edu
c3c1de65c967a5f4bd27728cd8ef76824c6eb14c
1ab1fc46ba8785854c8d9baebcaa3f1dfa0c78f2
/text_art.py
15e397537e8bcf1ff17fcbaa8ecc4e317f481fd7
[]
no_license
TiltMagic/T-renamer
0c0ad90883a2aad66d61d257413210f48bd84e03
8ef1c076df37079a8f050266c2f226b33d65ea1a
refs/heads/master
2020-03-19T10:23:46.583058
2018-06-07T16:42:20
2018-06-07T16:42:20
136,366,372
0
0
null
null
null
null
UTF-8
Python
false
false
1,291
py
title = """ ________ ________ ___ __/ ___ __ \_________________ _______ ________________ __ /________ /_/ / _ \_ __ \ __ `/_ __ `__ \ _ \_ ___/ _ /________/ _ _// __/ / / / /_/ /_ / / / / / __/ / /_/ /_/ |_| \___//_/ /_/\__,_/ /_/ /_/ /_/\___//_/ ______________________________________________________|_._._._._._._._._._. \_____________________________________________________|_#_#_#_#_#_#_#_#_#_| | """ error_monster = """ ___ .';:;'. /_' _' /\ __ ;a/ e= J/-'" '. \ ~_ ( -' ( ;_ ,. L~"'_. -. \ ./ ) ,'-' '-._ _; )' ( .' .' _.'") \ \( | / ( .-' __\{`', \ | / .' / _.-' " ; / | / / '-._'-, / / \ ( __/ (_ ,;' .-' / / /_'-._ `"-'` ~` ccc.' __.',' \j\L\ """ hour_glass = """ +====+ |(::)| | )( | |(..)| +====+ """ success_chest = """ _____ / ___/__ _______________ __________ \__ \/ / / / ___/ ___/ _ \/ ___/ ___/ ___/ / /_/ / /__/ /__/ __(__ |__ ) /____/\__,_/\___/\___/\___/____/____/ """
[ "noreply@github.com" ]
TiltMagic.noreply@github.com
37ad995aa7d1d0d0fc4db7476eed8c5d9fcb4d47
32eeb97dff5b1bf18cf5be2926b70bb322e5c1bd
/benchmark/wikipedia/testcase/interestallcases/testcase1_008_0.py
34135d8ab0a3e138c9938ad9ce244b9bbea57ae9
[]
no_license
Prefest2018/Prefest
c374d0441d714fb90fca40226fe2875b41cf37fc
ac236987512889e822ea6686c5d2e5b66b295648
refs/heads/master
2021-12-09T19:36:24.554864
2021-12-06T12:46:14
2021-12-06T12:46:14
173,225,161
5
0
null
null
null
null
UTF-8
Python
false
false
6,965
py
#coding=utf-8 import os import subprocess import time import traceback from appium import webdriver from appium.webdriver.common.touch_action import TouchAction from selenium.common.exceptions import NoSuchElementException, WebDriverException desired_caps = { 'platformName' : 'Android', 'deviceName' : 'Android Emulator', 'platformVersion' : '4.4', 'appPackage' : 'org.wikipedia', 'appActivity' : 'org.wikipedia.main.MainActivity', 'resetKeyboard' : True, 'androidCoverage' : 'org.wikipedia/org.wikipedia.JacocoInstrumentation', 'noReset' : True } def command(cmd, timeout=5): p = subprocess.Popen(cmd, stderr=subprocess.STDOUT, stdout=subprocess.PIPE, shell=True) time.sleep(timeout) p.terminate() return def getElememt(driver, str) : for i in range(0, 5, 1): try: element = driver.find_element_by_android_uiautomator(str) except NoSuchElementException: time.sleep(1) else: return element os.popen("adb shell input tap 50 50") element = driver.find_element_by_android_uiautomator(str) return element def getElememtBack(driver, str1, str2) : for i in range(0, 2, 1): try: element = driver.find_element_by_android_uiautomator(str1) except NoSuchElementException: time.sleep(1) else: return element for i in range(0, 5, 1): try: element = driver.find_element_by_android_uiautomator(str2) except NoSuchElementException: time.sleep(1) else: return element os.popen("adb shell input tap 50 50") element = driver.find_element_by_android_uiautomator(str2) return element def swipe(driver, startxper, startyper, endxper, endyper) : size = driver.get_window_size() width = size["width"] height = size["height"] try: driver.swipe(start_x=int(width * startxper), start_y=int(height * startyper), end_x=int(width * endxper), end_y=int(height * endyper), duration=2000) except WebDriverException: time.sleep(1) driver.swipe(start_x=int(width * startxper), start_y=int(height * startyper), end_x=int(width * endxper), end_y=int(height * endyper), duration=2000) return def scrollToFindElement(driver, str) : for i in range(0, 5, 1): try: element = driver.find_element_by_android_uiautomator(str) except NoSuchElementException: swipe(driver, 0.5, 0.6, 0.5, 0.2) else: return element return def clickoncheckable(driver, str, value = "true") : parents = driver.find_elements_by_class_name("android.widget.LinearLayout") for parent in parents: try : parent.find_element_by_android_uiautomator(str) lists = parent.find_elements_by_class_name("android.widget.LinearLayout") if (len(lists) == 1) : innere = parent.find_element_by_android_uiautomator("new UiSelector().checkable(true)") nowvalue = innere.get_attribute("checked") if (nowvalue != value) : innere.click() break except NoSuchElementException: continue # preference setting and exit try : os.popen("adb shell svc data diable") time.sleep(5) starttime = time.time() driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps) os.popen("adb shell am start -n org.wikipedia/org.wikipedia.settings.DeveloperSettingsActivity") scrollToFindElement(driver, "new UiSelector().text(\"useRestbase_setManually\")").click() clickoncheckable(driver, "new UiSelector().text(\"useRestbase_setManually\")", "true") scrollToFindElement(driver, "new UiSelector().text(\"suppressNotificationPolling\")").click() clickoncheckable(driver, "new UiSelector().text(\"suppressNotificationPolling\")", "false") scrollToFindElement(driver, "new UiSelector().text(\"memoryLeakTest\")").click() clickoncheckable(driver, "new UiSelector().text(\"memoryLeakTest\")", "true") scrollToFindElement(driver, "new UiSelector().text(\"readingListLoginReminder\")").click() clickoncheckable(driver, "new UiSelector().text(\"readingListLoginReminder\")", "false") scrollToFindElement(driver, "new UiSelector().text(\"readingListsFirstTimeSync\")").click() clickoncheckable(driver, "new UiSelector().text(\"readingListsFirstTimeSync\")", "true") driver.press_keycode(4) time.sleep(2) os.popen("adb shell am start -n org.wikipedia/org.wikipedia.settings.SettingsActivity") scrollToFindElement(driver, "new UiSelector().text(\"Show link previews\")").click() clickoncheckable(driver, "new UiSelector().text(\"Show link previews\")", "false") scrollToFindElement(driver, "new UiSelector().text(\"Download only over Wi-Fi\")").click() clickoncheckable(driver, "new UiSelector().text(\"Download only over Wi-Fi\")", "false") scrollToFindElement(driver, "new UiSelector().text(\"Show images\")").click() clickoncheckable(driver, "new UiSelector().text(\"Show images\")", "false") driver.press_keycode(4) time.sleep(2) except Exception, e: print 'FAIL' print 'str(e):\t\t', str(e) print 'repr(e):\t', repr(e) print traceback.format_exc() finally : endtime = time.time() print 'consumed time:', str(endtime - starttime), 's' command("adb shell am broadcast -a com.example.pkg.END_EMMA --es name \"1_008_pre\"") jacocotime = time.time() print 'jacoco time:', str(jacocotime - endtime), 's' driver.quit() # testcase008 try : starttime = time.time() driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps) element = getElememt(driver, "new UiSelector().resourceId(\"org.wikipedia:id/menu_overflow_button\").className(\"android.widget.TextView\")") TouchAction(driver).long_press(element).release().perform() swipe(driver, 0.5, 0.8, 0.5, 0.2) element = getElememt(driver, "new UiSelector().resourceId(\"org.wikipedia:id/menu_overflow_button\").className(\"android.widget.TextView\")") TouchAction(driver).long_press(element).release().perform() element = getElememt(driver, "new UiSelector().resourceId(\"org.wikipedia:id/icon\").className(\"android.widget.ImageView\")") TouchAction(driver).tap(element).perform() element = getElememtBack(driver, "new UiSelector().text(\"Got it\")", "new UiSelector().className(\"android.widget.TextView\").instance(2)") TouchAction(driver).tap(element).perform() element = getElememt(driver, "new UiSelector().resourceId(\"org.wikipedia:id/view_static_card_icon\").className(\"android.widget.ImageView\")") TouchAction(driver).tap(element).perform() element = getElememt(driver, "new UiSelector().className(\"android.widget.ImageView\").description(\"Share the article link\")") TouchAction(driver).tap(element).perform() except Exception, e: print 'FAIL' print 'str(e):\t\t', str(e) print 'repr(e):\t', repr(e) print traceback.format_exc() else: print 'OK' finally: cpackage = driver.current_package endtime = time.time() print 'consumed time:', str(endtime - starttime), 's' command("adb shell am broadcast -a com.example.pkg.END_EMMA --es name \"1_008\"") jacocotime = time.time() print 'jacoco time:', str(jacocotime - endtime), 's' driver.quit() if (cpackage != 'org.wikipedia'): cpackage = "adb shell am force-stop " + cpackage os.popen(cpackage) os.popen("adb shell svc data enable")
[ "prefest2018@gmail.com" ]
prefest2018@gmail.com
426d534ea1ee13cc690136f8ee33d913fa161456
fd90b8efa1daaec44b54797e549e0f738f4a5897
/shuxue/3的幂.py
648fe8a17fac9249b54026f7347281ef036e3e5e
[]
no_license
ddz-mark/LeetCode
2a622eeb655398ca9ebd9feee93a52cd114a77c4
d557faf87374ad8c65634ee9d9e572b88a54913a
refs/heads/master
2021-07-12T06:58:57.162657
2021-04-18T13:25:03
2021-04-18T13:25:03
244,403,881
0
0
null
null
null
null
UTF-8
Python
false
false
456
py
# 给定一个整数,写一个函数来判断它是否是 3 的幂次方。 class Solution(object): def isPowerOfThree(self, n): """ :type n: int :rtype: bool """ if n == 0 : return False while n % 3 == 0: n /= 3 if n == 1: return True else: return False if __name__ == '__main__': ob = Solution() print(ob.isPowerOfThree(9))
[ "dudaizhong@126.com" ]
dudaizhong@126.com
04cc91c83f3d934502286c921177b1a981db8acc
fe339dcda31f3e4c77b148868ea1bda3596befc1
/db_core/SConscript
02f61cf62eb5bc34a51918403669d1710ad9b32d
[]
no_license
detective7th/kn_db
997a7f2c42dd4e97221ebef5b19f0b01de471c2e
a746934e2b31bec9fa416071ba54e5419dbad1c4
refs/heads/master
2021-08-24T06:01:02.722534
2017-12-08T09:36:41
2017-12-08T09:36:41
107,982,419
1
0
null
2017-12-07T12:38:29
2017-10-23T12:59:15
C++
UTF-8
Python
false
false
599
#! /usr/bin/python3 # -*- coding:utf-8 -*- import os import sys if 'SCons.Script' == __name__: name = "db_core" Import(name + '_version') Import('env', 'install_dir', 'AddProjectSource') env_core = env.Clone() env_core.AppendUnique(CCFLAGS = " -mavx -shared") libs=['m', "crypto", "ssl", "folly"] db_core = env_core.SharedLibrary(name, source = AddProjectSource(), tools = ['g++'], LIBS=libs , SONAME = db_core_version.SoName() , SHLIBVERSION = db_core_version.VersionStr()) Return(name)
[ "kid_1412_94@hotmail.com" ]
kid_1412_94@hotmail.com
6f3cfb308a48eddc0e29b611198dc4796970b131
5d054db07d341e9261945f34888427b13a37bf6d
/cart/templatetags/cart_tags.py
20d81fbc8cd690881986909d2ef42ba0a8518f59
[]
no_license
samanaj/carrito
3a675d9bd942bf9393275d97a7ade8c82a5fff94
70d6bfb9264bec246c674c6ae9e865cbf2e6da09
refs/heads/main
2023-05-21T18:08:04.464412
2021-06-14T22:45:18
2021-06-14T22:45:18
374,822,362
0
0
null
null
null
null
UTF-8
Python
false
false
760
py
from django import template """ los templetags sirven para crear filtros en las templates por ejemplo podemos utilizar un filtro para multiplicar valores y otro para formatos de dinero para ello importamos de django el template para poder utilizar register """ register = template.Library() #usaamos el register como un decorador de tipo filtro. @register.filter() # creamos la funcion multiplicar recibe un value y un argumento def multiply(value, arg): #multimplicamos value por el argumento y el resultado puede ser un decimal return float(value) * arg @register.filter() #formato de moneda def money_format(value, arg): #la f de formato return f"{value}{arg}" """ con esto creado vamos a el listado de productos a implementarlos. """
[ "soporte.samanaj@gmail.com" ]
soporte.samanaj@gmail.com
ee0c0439bc8653fcafc1eda4272bc03c2c60a56f
fafee9d79beb7433633d59dce865efb437d608f6
/__init__.py
89ba90efec4b90e8c130bf0cd0c31e76b9df484d
[ "MIT", "BSD-3-Clause" ]
permissive
PabloRomanH/cihaidata-unihan
65830d945e50518895ce3f06a211a117cd502b84
c408b57f61b5b13926f42c3647cc0bc61da758be
refs/heads/master
2021-01-12T22:33:15.289066
2016-06-03T17:37:40
2016-06-03T17:37:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
674
py
#!/usr/bin/env python # -*- coding: utf8 - *- """Tool to build `Unihan`_ dataset into datapackage / simple data format.""" from __future__ import absolute_import, division, print_function, \ with_statement, unicode_literals __title__ = 'cihaidata-python' __package_name__ = 'cihaidata_python' __description__ = 'Tool to build `Unihan`_ dataset into datapackage / simple data format.' __version__ = '0.0.1' __author__ = 'Tony Narlock' __email__ = 'cihai@git-pull.com' __license__ = 'MIT' __copyright__ = 'Copyright 2013-2014 Tony Narlock' from .unihan import Unihan, check_install, create_table, flatten_datasets from .scripts import save, download, extract, convert
[ "tony@git-pull.com" ]
tony@git-pull.com
a2232739865e69220b2b23c8ea3a22f2ebcebf12
1997b2223141e87a9ba137524ba70d154005d9b6
/02_regression/06_random_forest_regression/random_forest_regression.py
6eb4dfde7a0f1c2712ae797bcf83d101d24cc44f
[]
no_license
prakashsharma91/machine-learning-a-z
a0f5d49b58b1399db0b9812d3fdd01e9d2ba2ed3
063395851050e11834a29948c3b4544a3cca29cd
refs/heads/master
2022-07-07T09:34:05.280647
2020-05-10T12:30:48
2020-05-10T12:30:48
261,613,680
0
0
null
null
null
null
UTF-8
Python
false
false
965
py
# Random Forest Regression # Importing the libraries import numpy as np import matplotlib.pyplot as plt import pandas as pd # Importing the dataset dataset = pd.read_csv('/home/ps/Code/machine-learning-a-z/02_regression/06_random_forest_regression/Position_Salaries.csv') X = dataset.iloc[:, 1:-1].values y = dataset.iloc[:, -1].values # Training the Random Forest Regression model on the whole dataset from sklearn.ensemble import RandomForestRegressor regressor = RandomForestRegressor(n_estimators = 10, random_state = 0) regressor.fit(X, y) # Predicting a new result regressor.predict([[6.5]]) # Visualising the Random Forest Regression results (higher resolution) X_grid = np.arange(min(X), max(X), 0.01) X_grid = X_grid.reshape((len(X_grid), 1)) plt.scatter(X, y, color = 'red') plt.plot(X_grid, regressor.predict(X_grid), color = 'blue') plt.title('Truth or Bluff (Random Forest Regression)') plt.xlabel('Position level') plt.ylabel('Salary') plt.show()
[ "prakashsharma91@gmail.com" ]
prakashsharma91@gmail.com
7ee818a49b5742e2cf50f02dbd2aad0fdbd5097f
011ab943d0585d0fd4b277cd1c31885e5b790924
/utility/adam_getvalues.py
5fce612e46e740046c418205819b9e112e4b413b
[ "MIT" ]
permissive
mafavaron/MeteoFlux
4bfe5099471eb7c0c5b5512dcd2f42e9ba2453d8
a2fc66aac1faa97f12e07fba9bb3ef8aea60b5d7
refs/heads/master
2020-03-25T01:34:02.644998
2018-10-23T10:50:52
2018-10-23T10:50:52
143,243,744
0
0
null
null
null
null
UTF-8
Python
false
false
280
py
#!/usr/bin/python import serial # Search for AD4xxx modules on a given port ser = serial.Serial('/dev/ttyS0', 9600, timeout=1) for i in range(0,1000000): cmd = "#01\r" ser.write(cmd) print cmd line = ser.readline() if line != "": print "Values: %s" % (line) ser.close()
[ "noreply@github.com" ]
mafavaron.noreply@github.com
54128472651c0859b883c2636d34313a83d96e0a
88ec732d185d1323833ba1a5113edde32a86e28f
/api/threeD_graph.py
1ff1d435efaaffffd14adb36acb1276920ab6742
[ "MIT" ]
permissive
45i/Denzven-Graphing-Api
57a6bbaed117f23e2c79d58999581a7ad51102d4
aa92c92f9447d2a3e1969252d093718e7bf57ad4
refs/heads/master
2023-08-16T13:24:12.430280
2021-09-26T11:34:20
2021-09-26T11:34:20
410,327,856
0
0
MIT
2021-09-26T11:34:20
2021-09-25T16:45:06
Python
UTF-8
Python
false
false
15,490
py
#importing stuff from flask import * import matplotlib from matplotlib import * matplotlib.use("agg") import numpy as np import matplotlib.pyplot as plt import os import traceback from mpl_toolkits.mplot3d import Axes3D # Adding a blueprint to start the graph function threeD_graph_runner = Blueprint('threeD_graph_runner', __name__) # Using the Blueprint made with a path @threeD_graph_runner.route('/DenzGraphingApi/v1/threeD_graph/test/plot', methods=['GET']) def threeD_graph(): # The Funtion # Getting all the parameters from the url formula_og_input = request.args.get('formula') grid_value = request.args.get('grid') plot_style = request.args.get('plot_style') x_coord = request.args.get('x_coord') y_coord = request.args.get('y_coord') spine_top = request.args.get('spine_top') spine_bottom = request.args.get('spine_bottom') spine_left = request.args.get('spine_left') spine_right = request.args.get('spine_right') line_style = request.args.get('line_style') grid_lines_major = request.args.get('grid_lines_major') grid_lines_minor = request.args.get('grid_lines_minor') tick_colors = request.args.get('tick_colors') axfacecolor = request.args.get('axfacecolor') figfacecolor = request.args.get('figfacecolor') title_text = request.args.get('title_text') plot_style_list = ['Solarize_Light2', '_classic_test_patch', 'bmh', 'classic', 'dark_background', 'fast', 'fivethirtyeight', 'ggplot','grayscale', 'seaborn', 'seaborn-bright', 'seaborn-colorblind', 'seaborn-dark', 'seaborn-dark-palette','seaborn-darkgrid', 'seaborn-deep', 'seaborn-muted', 'seaborn-notebook', 'seaborn-paper', 'seaborn-pastel','seaborn-poster', 'seaborn-talk', 'seaborn-ticks', 'seaborn-white', 'seaborn-whitegrid', 'tableau-colorblind10'] # Printing tha values for debugging print('\n\n\n') print(f'+========================================+') print(f'| ') print(f'| Graph_Type : ThreeDGraph ') print(f'| formula_og_input : {formula_og_input} ') print(f'| grid_value : {grid_value} ') print(f'| plot_style : {plot_style} ') print(f'| x_coord : {x_coord} ') print(f'| y_coord : {y_coord} ') print(f'| spine_top : {spine_top} ') print(f'| spine_bottom : {spine_bottom} ') print(f'| spine_left : {spine_left} ') print(f'| spine_right : {spine_right} ') print(f'| line_style : {line_style} ') print(f'| grid_lines_major : {grid_lines_major} ') print(f'| grid_lines_minor : {grid_lines_minor} ') print(f'| tick_colors : {tick_colors} ') print(f'| axfacecolor : {axfacecolor} ') print(f'| figfacecolor : {figfacecolor} ') print(f'| ') print(f'+========================================+') print('\n\n\n') # Running the funtion in try-execpt blocks to avoid 500 type error try: # Main Try-Execept block try: # Checking for Formula if formula_og_input is None: return jsonify( error = 'formula input is not provided', error_id = 'ERROR_NO_FORMULA_INPUT_TRY_BLOCK', fix = 'Do not leave the Formula parameter empty' ) except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_FORMULA_INPUT_TRY_BLOCK', fix = 'check your formula input again' ) #--- try: # Replacing only some with small letters to work in the eval formula_og_input = str(formula_og_input.upper()) # My sole Defence against every single thing formula = formula_og_input.replace('x', 'X') formula = formula.replace('y', 'Y') formula = formula.replace('e', 'math.e') formula = formula.replace('SIN', 'np.sin') formula = formula.replace('COS', 'np.cos') formula = formula.replace('TAN', 'np.tan') formula = formula.replace('√', 'np.sqrt') formula = formula.replace('SQRT', 'np.sqrt') formula = formula.replace('π', 'np.pi') formula = formula.replace('PI', 'np.pi') formula = formula.replace('ABS', 'np.absolute') formula = formula.replace('MIN', 'np.min') formula = formula.replace('MAX', 'np.max') formula = formula.replace('WHERE', 'np.where') formula = formula.replace('CLAMP', 'np.clip') formula = formula.replace('LOG', 'np.log') formula = formula.replace('FLOOR', 'np.floor') formula = formula.replace('CEIL', 'np.ceil') formula = formula.replace('ROUND', 'np.ceil') formula = formula.replace(')(', ')*(') except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_FORMULA_REPLACE_TRY_BLOCK', fix = 'Please check your formula again, it contains unsupported characters' ) #--- try: # Setting plot style if plot_style is None: plt.style.use('dark_background') pass if plot_style is not None: plot_style_choice = int(plot_style) try: plot_style = (plot_style_list[plot_style_choice]) except: return f'couldnt use this style {plot_style}' plt.style.use(str(plot_style)) pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_PLOT_STYLE_TRY_BLOCK', fix = 'change your plot_style to a valid number (between 0-25)' ) #--- try: # Setting x_coord if x_coord is None: xlist = np.linspace(-10, 10, num=1000) pass if x_coord is not None: x_coord = int(x_coord) neg_x_coord = int(np.negative(x_coord)) xlist = np.linspace(neg_x_coord, x_coord, num=1000) pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_X_COORD_TRY_BLOCK', fix = 'x_coord must be a number' ) #--- try: # Setting y_coord if y_coord is None: ylist = np.linspace(-10, 10, num=1000) pass if y_coord is not None: y_coord = int(y_coord) neg_y_coord = int(np.negative(y_coord)) ylist = np.linspace(neg_y_coord, y_coord, num=1000) pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_Y_COORD_TRY_BLOCK', fix = 'y_coord must be a number' ) #--- try: # Core funtion of actually getting the numbers X, Y = np.meshgrid(xlist, ylist) fig, ax = plt.subplots(subplot_kw=dict(projection='3d')) # Setting the Projection to '3d' F = eval(formula) # The most Dangerous Eval... DO NOT USE THIS... it jus works for this case pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_MAIN_EVAL_TRY_BLOCK', fix = 'Check the formula input again,\n (PS: 2x has to be written as 2*x, please read the docs for further info: \n https://denzven.pythonanywhere.com/docs)' ) #--- try: #setting up Line_style if line_style is None: ax.contour(X, Y, F, 50,cmap='Blues') pass if line_style is not None: ax.contour(X, Y, F, 50,cmap='Blues') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_LINE_STYLE_TRY_BLOCK', fix = 'check the line_style input it has to be a valid hex color withour #' ) #--- try: # Setting up Grids if grid_value is None: plt.minorticks_off() plt.grid(b=False) plt.grid(b=False) pass if grid_value is '1': plt.minorticks_on() plt.grid(b=True, which='major', color='#666666', linestyle='-') plt.grid(b=True, which='minor', color='#999999', linestyle='-', alpha=0.2) pass if grid_value is '3': plt.minorticks_on() plt.grid(b=True, which='major', color=f"#{grid_lines_major}", linestyle='-') plt.grid(b=True, which='minor', color=f"#{grid_lines_minor}", linestyle='-', alpha=0.2) pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_GRID_VALUE_TRY_BLOCK', fix = 'check the grid input it has to be 1,2 or 3' ) #--- try: # Setting up each axis spine try: # Top-Spine if spine_top is None: ax.spines['top'].set_color(f'#ffffff') pass if spine_top is not None: ax.spines['top'].set_color(f"#{spine_top}") pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_TOP_SPINE_TRY_BLOCK', fix = 'check the spine_top input it has to be a valid hex color withour #' ) #--- try: # Bottom-Spine if spine_bottom is None: ax.spines['bottom'].set_color(f'#ffffff') pass if spine_bottom is not None: ax.spines['bottom'].set_color(f'#{spine_bottom}') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_BOTTOM_SPINE_TRY_BLOCK', fix = 'check the spine_bottom input it has to be a valid hex color withour #' ) #--- try: # Left-Spine if spine_left is None: ax.spines['left'].set_color(f'#ffffff') pass if spine_left is not None: ax.spines['left'].set_color(f'#{spine_left}') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_LEFT_SPINE_TRY_BLOCK', fix = 'check the spine_left input it has to be a valid hex color withour #' ) #--- try: # Right-Spine if spine_right is None: ax.spines['right'].set_color(f'#ffffff') pass if spine_right is not None: ax.spines['right'].set_color(f'#{spine_right}') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_RIGHT_SPINE_TRY_BLOCK', fix = 'check the spine_right input it has to be a valid hex color withour #' ) except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_MAIN_SPINE_TRY_BLOCK', fix = 'please check values of spine again' ) #--- try: #setting up tick_colors if tick_colors is None: ax.tick_params(colors='#ffffff', which='both') pass if tick_colors is not None: ax.tick_params(colors=f"#{tick_colors}", which='both') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_TICK_COLORS_TRY_BLOCK', fix = 'check the tick_colors input it has to be a valid hex color withour #' ) #--- try: #setting up axfacecolors if axfacecolor is None: pass if axfacecolor is not None: ax.set_facecolor(f'#{axfacecolor}') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_AX_FACECOLOR_TRY_BLOCK', fix = 'check the axfacecolor input it has to be a valid hex color withour #' ) #--- try: #setting up figfacecolors if figfacecolor is None: pass if figfacecolor is not None: fig.set_facecolor(f'#{figfacecolor}') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_FIG_FACECOLOR_TRY_BLOCK', fix = 'check the figfacecolor input it has to be a valid hex color withour #' ) #--- try: #setting up title if title_text is None: plt.title(f"graphical representation of {formula_og_input} = 0", color='#ffffff', pad=20, fontsize='small') pass if title_text is not None: plt.title(f"{title_text}", color='#ffffff', pad=20, fontsize='small') pass except Exception as e: return jsonify( error = str(e), error_id = 'ERROR_TITLE_TEXT_TRY_BLOCK', fix = 'the title contains invalid characters please recheck the title' ) #--- try: #adding title and saving and sending the file ax.set_aspect('auto') fig.savefig('../threeD_plot_test.png', bbox_inches='tight', dpi=150) filename = '../threeD_plot_test.png' plt.close(fig) return send_file(filename) except Exception as e: return jsonify(error = str(e) , error_id = 'ERROR_SAVE_FIG_TRY_BLOCK') except Exception as e: return jsonify(error = str(e) , error_id = 'ERROR_MAIN_TRY_BLOCK') # Hope you loved this. feel free to try out and explore this Api at: # https://denzven.pythonanywhere.com/ # Join my chill server at: # https://dsc.gg/chilly_place # pls star this on github it will be a great honour # https://github.com/denzven/Denzven-Graphing-Api # Hope yall have a great day! happy Graphing! # Oh Boy it was a Pain to comment this code, But im sure its not a pain for you to understand it :) .
[ "69366709+denzven@users.noreply.github.com" ]
69366709+denzven@users.noreply.github.com
50a70e539da40d600977e01d9bf5f12594110556
ba9710a545e07c800e51e9e1eb4b9867548b09fc
/main.py
e101d840c03002d3f1da29e5080317fabe58f510
[]
no_license
krinta/startit-vardadienas
1e9e522ede0a926973a0a6b012b9466396f33891
2d3bcb7dd423306e261d815cdb6c3c6b46612743
refs/heads/master
2023-03-20T03:35:31.692588
2021-03-19T13:22:38
2021-03-19T13:22:38
349,431,082
0
0
null
null
null
null
UTF-8
Python
false
false
1,522
py
from flask import Flask, render_template, g, jsonify import sqlite3 from dbdati import sodien, varda_datums, mekle_pec_burtiem, mekle_pec_burtiem2 DATUBAZE = "vardi.db" app = Flask('app') def get_db(): db = getattr(g, '_database', None) if db is None: db = g._database = sqlite3.connect(DATUBAZE) return db @app.teardown_appcontext def close_connection(exception): db = getattr(g, '_database', None) if db is not None: db.close() @app.route('/') def hello_world(): return render_template("index.html") @app.route('/meklesana') def meklesana(): return render_template("meklesana.html") @app.route('/api/vardi/sodien') def sodienas_vardi(): cur = get_db().cursor() vardi = sodien(cur) return jsonify(vardi) @app.route('/api/vardi/mekle/<vards>') def mekle_vardu(vards): cur = get_db().cursor() datums = varda_datums(cur, vards) return jsonify(datums) @app.route('/api/vardi/lidzigi/<burti>') def mekle_lidzigus(burti): cur = get_db().cursor() vardi = mekle_pec_burtiem(cur, burti) return jsonify(vardi) @app.route('/api/vardi/lidzigi/<sakums>/<beigas>') def mekle_lidzigus2(sakums, beigas): cur = get_db().cursor() vardi = mekle_pec_burtiem2(cur, sakums, beigas) return jsonify(vardi) @app.route('/api/vardi/test') def test_vardi(): cur = get_db().cursor() # cur.execute('SELECT vards FROM vardadienas LIMIT 1') # vards = cur.fetchone() vardi = sodien(cur) print(vardi) return jsonify(vardi) app.run(host='0.0.0.0', port=8080)
[ "krievinainta@gmail.com" ]
krievinainta@gmail.com
b6e593b567f6e8bc78f9b63132c0827481a1fea3
8af16c3170eb1efad8f2447a91fed649203ebfbe
/chatbot/app.py
bce9127cd3765952e7336f91804daec4b279bf4c
[]
no_license
imansigupta/Amore
a3a1bed50b5fdb142b89a4f379de12358d41e102
0992924bedda5203048df86f42cf24497e3a945c
refs/heads/master
2021-06-27T19:00:33.847688
2020-10-02T05:50:30
2020-10-02T05:50:30
150,318,457
3
1
null
2019-10-19T14:36:12
2018-09-25T19:27:25
CSS
UTF-8
Python
false
false
1,824
py
from flask import Flask, render_template, request from chatterbot import ChatBot from chatterbot.trainers import ChatterBotCorpusTrainer from chatterbot.trainers import ListTrainer app = Flask(__name__) english_bot = ChatBot("Chatterbot", storage_adapter="chatterbot.storage.SQLStorageAdapter") english_bot.set_trainer(ChatterBotCorpusTrainer) english_bot.set_trainer(ListTrainer) #english_bot.train("chatterbot.corpus.english") #english_bot.train("bot.yaml") english_bot.train( ["I am not feeling well", "I am Here to help u. feel free to share with me", ]) english_bot.train([ "I am not in a good modd today", "I m there to support you. you can share everything with me.tell me what happend" ]) english_bot.train([ "I m quite depressed?","Shall I play music for u or u want some good music suggestions?", "I would go for bollywood?","If we go for some soothing taste then we can play Buddhu Sa Mann or if we go some romantic song then dil di yan galla or if we go for sad song then ek raat is best" ]) english_bot.train([ "I m happy today I achieved my goal","Ohh Wow!That's so good to hear, Shall we have a party tonight?", "Yeah sure we can have a party?","Okay, We will meet at 8:00pm and go for a dance party" ]) english_bot.train([ "I m happy today I achieved my goal","Ohh Wow!That's so good to hear, Shall we have a party tonight?", "Yeah sure we can have a party?","Okay, We will meet at 8:00pm and go for a dance party" ]) @app.route("/") def home(): return render_template("index.html") @app.route("/get") def get_bot_response(): userText = request.args.get('msg') return str(english_bot.get_response(userText)) if __name__ == "__main__": app.run(host='192.168.6.251',port='8008')
[ "guptamansi742@gmail.com" ]
guptamansi742@gmail.com
075de6d43b28c4d787f490fc87f7b4a93fd75c5d
1dc35ea667b5b71cd116cecabbddce9eab6a47f9
/synthetic_image_good.py
95b7cdf9e23104121f5f30e1fbe59a184b4173a6
[]
no_license
shengjin/fits_py
9fa24f757e320c2079277fa5812719c26c257f16
f7e41e8698fc131aac43ce3b7f27a89a4f95590d
refs/heads/master
2020-12-25T13:34:13.668355
2017-05-22T23:13:54
2017-05-22T23:13:54
65,651,385
0
0
null
null
null
null
UTF-8
Python
false
false
795
py
import pyfits import numpy as np from scipy.ndimage import gaussian_filter # Create empty image nx, ny = 512, 512 image = np.zeros((ny, nx)) # Set number of stars n = 10000 # Generate random positions r = np.random.random(n) * nx theta = np.random.uniform(0., 2. * np.pi, n) # Generate random fluxes f = np.random.random(n) ** 2 # Compute position x = nx / 2 + r * np.cos(theta) y = ny / 2 + r * np.sin(theta) # Add stars to image # ==> First for loop and if statement <== for i in range(n): if x[i] >= 0 and x[i] < nx and y[i] >= 0 and y[i] < ny: image[y[i], x[i]] += f[i] # Convolve with a gaussian image = gaussian_filter(image, 1) # Add noise image += np.random.normal(3., 0.01, image.shape) # Write out to FITS image pyfits.writeto('cluster.fits', image, clobber=True)
[ "lifedit@163.com" ]
lifedit@163.com
9cd74a5e9ea1f099ce36fe828b7cee6c5ead409d
63820db0b426eaa9d0d694cb1b1aa2a419cc8379
/ch6/06-8lottoset.py
bbd833511ae8e883186fc14e6dd63f3ab0192272
[]
no_license
ngsc-py/2020-python-code
351bb02b42abe4797fbb97f36ed890bf0d143d5c
87424296c90672ee8230ec3c73421b37e7fef247
refs/heads/master
2022-09-19T23:30:46.073737
2020-05-31T01:41:58
2020-05-31T01:41:58
268,107,721
0
0
null
null
null
null
UTF-8
Python
false
false
477
py
from random import randrange from random import sample mylotto = set() while True: num = randrange(1,46) print(num,end=' ') mylotto.add(num) if len(mylotto) == 6: break; print() print('집합: {}'.format(mylotto)) print('정렬 리스트: {}'.format(sorted(mylotto))) print() lotto = sample(range(4,46),6) print('sample 함수 리스트: {}'.format(lotto)) print('sample 함수 정렬 리스트: {}'.format(sorted(lotto)))
[ "noreply@github.com" ]
ngsc-py.noreply@github.com
7cb4b4d3b8da5d4f881a238fd2bb87a15a3dbb29
d94b6845aeeb412aac6850b70e22628bc84d1d6d
/d3pm/text/main_test.py
ddcfcfad48bbd428ea167bea70a1e48d197f9795
[ "CC-BY-4.0", "Apache-2.0" ]
permissive
ishine/google-research
541aea114a68ced68736340e037fc0f8257d1ea2
c1ae273841592fce4c993bf35cdd0a6424e73da4
refs/heads/master
2023-06-08T23:02:25.502203
2023-05-31T01:00:56
2023-05-31T01:06:45
242,478,569
0
0
Apache-2.0
2020-06-23T01:55:11
2020-02-23T07:59:42
Jupyter Notebook
UTF-8
Python
false
false
1,725
py
# coding=utf-8 # Copyright 2023 The Google Research Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Test for the main executable.""" import random from absl.testing import absltest import jax import numpy as np import tensorflow_datasets as tfds from d3pm.text import configs from d3pm.text import main class MainTest(absltest.TestCase): def test_small_training_job(self): experiment_dir = self.create_tempdir().full_path # Disable compiler optimizations for faster compile time. jax.config.update('jax_disable_most_optimizations', True) # Seed the random number generators. random.seed(0) np.random.seed(0) # Construct a test config with a small number of steps. configs.gin_load('lm1b_tiny') with tfds.testing.mock_data(num_examples=2048): # Make sure we can train without any exceptions. main.run_experiment( experiment_dir, batch_size_per_device=1, max_train_steps=1, validate_every=5, train_summary_frequency=5, num_eval_steps=5, num_predict_steps=1, restore_checkpoint=False, checkpoint_frequency=None, ) if __name__ == '__main__': absltest.main()
[ "copybara-worker@google.com" ]
copybara-worker@google.com
997bb8aac93f3b9680d4d4aa8b7ebd6b8155fef0
46061620bd6cfd89f3c21ee94abf283455205fdb
/2.3.4.py
7c1f5978968848db68ed7b3d6fd88b4288a56330
[]
no_license
b0rn2rage/stepik---auto-tests-course
cb351d1746ab8cb088ca4be0f769a9e34c774d0a
043b1da3fb365c16edf1baa6f594b28098985a56
refs/heads/master
2022-11-17T08:32:21.520264
2020-07-15T10:18:12
2020-07-15T10:18:12
276,615,956
0
0
null
null
null
null
UTF-8
Python
false
false
686
py
import time import math from selenium import webdriver def calc(x): return str(math.log(abs(12 * math.sin(int(x))))) try: browser = webdriver.Chrome() link = 'http://suninjuly.github.io/alert_accept.html' browser.get(link) button = browser.find_element_by_class_name('btn') button.click() confirm = browser.switch_to.alert confirm.accept() element_x = browser.find_element_by_id('input_value').text result = calc(element_x) answer = browser.find_element_by_id('answer') answer.send_keys(str(result)) second_button = browser.find_element_by_class_name('btn') second_button.click() finally: time.sleep(8) browser.quit()
[ "b0rn2rage@bk,ru" ]
b0rn2rage@bk,ru
69c22b4665ab4a81604cf431de0220f0ec3390ab
08af0b7f0437a60f7a306feb45e0c1d69ef7e823
/src/models/brain_model.py
bb9cc4924ec8620ee96dd6ffd185113ac23b0add
[ "MIT" ]
permissive
MohammedAljahdali/mental-disorder-brain-mri
6eb98851ea605cc4094cd2ed6e0d432fb83f595c
0b6a348e0d741f363e7806a8aacefd1ef59a5ee6
refs/heads/main
2023-05-23T08:20:55.818145
2021-06-07T10:57:42
2021-06-07T10:57:42
370,917,734
0
0
null
null
null
null
UTF-8
Python
false
false
4,746
py
from typing import Any, List import torch from pytorch_lightning import LightningModule from torchmetrics.classification.accuracy import Accuracy # from src.models.modules.brain_resnet2d import BrainResNet from src.models.modules.brain_resnet3d import BrainResNet class BrainModel(LightningModule): """ Example of LightningModule for MNIST classification. A LightningModule organizes your PyTorch code into 5 sections: - Computations (init). - Train loop (training_step) - Validation loop (validation_step) - Test loop (test_step) - Optimizers (configure_optimizers) Read the docs: https://pytorch-lightning.readthedocs.io/en/latest/common/lightning_module.html """ def __init__( self, num_classes: int = 4, lr: float = 0.001, weight_decay: float = 0.0005, **kwargs ): super().__init__() # this line ensures params passed to LightningModule will be saved to ckpt # it also allows to access params with 'self.hparams' attribute self.save_hyperparameters() self.model = BrainResNet(hparams=self.hparams) # print(self.model) # loss function # TODO: handle weights here labels_counter = kwargs["labels_counter"] weights = list(range(len(labels_counter))) for pair in labels_counter.items(): weights[pair[0]] = pair[1] normedWeights = [1 - (x / sum(weights)) for x in weights] print(normedWeights) normedWeights = [0.3, 0.8, 0.8, 0.8] normedWeights = torch.FloatTensor(normedWeights) self.criterion = torch.nn.CrossEntropyLoss(weight=normedWeights) # use separate metric instance for train, val and test step # to ensure a proper reduction over the epoch self.train_accuracy = Accuracy() self.val_accuracy = Accuracy() self.test_accuracy = Accuracy() # def on_fit_start(self): # for l in self.model.fcs: # l.to(self.device) def forward(self, x: torch.Tensor): return self.model(x) def step(self, batch: Any): x, y = batch["scan"], batch["label"] logits = self.forward(x) loss = self.criterion(logits, y) preds = torch.argmax(logits, dim=1) return loss, preds, y def training_step(self, batch: Any, batch_idx: int): loss, preds, targets = self.step(batch) # log train metrics acc = self.train_accuracy(preds, targets) self.log("train/loss", loss, on_step=False, on_epoch=True, prog_bar=False) self.log("train/acc", acc, on_step=False, on_epoch=True, prog_bar=True) # we can return here dict with any tensors # and then read it in some callback or in training_epoch_end() below # remember to always return loss from training_step, or else backpropagation will fail! return {"loss": loss, "preds": preds, "targets": targets} def training_epoch_end(self, outputs: List[Any]): # `outputs` is a list of dicts returned from `training_step()` pass def validation_step(self, batch: Any, batch_idx: int): loss, preds, targets = self.step(batch) # log val metrics acc = self.val_accuracy(preds, targets) self.log("val/loss", loss, on_step=False, on_epoch=True, prog_bar=False) self.log("val/acc", acc, on_step=False, on_epoch=True, prog_bar=True) return {"loss": loss, "preds": preds, "targets": targets} def validation_epoch_end(self, outputs: List[Any]): pass def test_step(self, batch: Any, batch_idx: int): loss, preds, targets = self.step(batch) # log test metrics acc = self.test_accuracy(preds, targets) self.log("test/loss", loss, on_step=False, on_epoch=True) self.log("test/acc", acc, on_step=False, on_epoch=True) return {"loss": loss, "preds": preds, "targets": targets} def test_epoch_end(self, outputs: List[Any]): pass def configure_optimizers(self): """Choose what optimizers and learning-rate schedulers to use in your optimization. Normally you'd need one. But in the case of GANs or similar you might have multiple. See examples here: https://pytorch-lightning.readthedocs.io/en/latest/common/lightning_module.html#configure-optimizers """ return torch.optim.SGD( params=self.parameters(), lr=self.hparams.lr, weight_decay=self.hparams.weight_decay, nesterov=True, momentum=0.9 ) # return torch.optim.Adam( # params=self.parameters(), lr=self.hparams.lr, weight_decay=self.hparams.weight_decay, # )
[ "mohammedkhalid4028@gmail.com" ]
mohammedkhalid4028@gmail.com
dba9cbb205056e92cf377392703f257eafae100a
242f1dafae18d3c597b51067e2a8622c600d6df2
/src/1400-1499/1486.xor.in.array.py
9f93fdedc92c4d84e1a7f4947d3adae6aec16ebd
[]
no_license
gyang274/leetcode
a873adaa083270eb05ddcdd3db225025533e0dfe
6043134736452a6f4704b62857d0aed2e9571164
refs/heads/master
2021-08-07T15:15:01.885679
2020-12-22T20:57:19
2020-12-22T20:57:19
233,179,192
1
0
null
null
null
null
UTF-8
Python
false
false
235
py
class Solution: def xorOperation(self, n: int, start: int) -> int: # TC: O(N), SC: O(1), note it is possible but difficult to complete this in O(1).. ans = 0 for i in range(n): ans ^= (start + 2 * i) return ans
[ "gyang274@gmail.com" ]
gyang274@gmail.com
c463e45ee2100be78ea759c8932c44c8762bfe60
eb7f48950c8c504febe3679aca47f505115f958a
/api/serializers/accounts.py
a605081de4d28e5d2ef10418baae193e7c8c6658
[]
no_license
Grigorevskiy/api_like_site
b4d02541bd91181944a5bcebe37da71ed8163d49
e07fe27f14a4a00083ea0485bbd070eacdf9976a
refs/heads/master
2022-12-12T12:22:00.149347
2018-11-16T10:16:43
2018-11-16T10:16:43
146,489,783
0
0
null
2022-12-08T02:50:56
2018-08-28T18:30:01
Python
UTF-8
Python
false
false
4,211
py
import datetime from django.core.mail import EmailMessage from django.template.loader import render_to_string from django.utils.encoding import force_bytes from django.utils.http import urlsafe_base64_encode from rest_framework import serializers from django.contrib.auth.models import User from rest_framework_jwt.settings import api_settings from django.utils import timezone from django.contrib.auth.tokens import PasswordResetTokenGenerator from django.utils import six jwt_payload_handler = api_settings.JWT_PAYLOAD_HANDLER jwt_encode_handler = api_settings.JWT_ENCODE_HANDLER jwt_response_payload_handler = api_settings.JWT_RESPONSE_PAYLOAD_HANDLER expire_delta = api_settings.JWT_REFRESH_EXPIRATION_DELTA class AccountActivationTokenGenerator(PasswordResetTokenGenerator): def _make_hash_value(self, user, timestamp): return ( six.text_type(user.pk) + six.text_type(timestamp) + six.text_type(User.is_active) ) class RegistrationSerializer(serializers.ModelSerializer): password = serializers.CharField(style={'input_type': 'password'}, write_only=True) password2 = serializers.CharField(style={'input_type': 'password'}, write_only=True) token = serializers.SerializerMethodField(read_only=True) expires = serializers.SerializerMethodField(read_only=True) class Meta: model = User fields = [ 'username', 'email', 'password', 'password2', 'token', 'expires', ] extra_kwargs = {'password': {'write_only': True}} def get_expires(self, obj): return timezone.now() + expire_delta - datetime.timedelta(seconds=200) def validate_email(self, value): qs = User.objects.filter(email__iexact=value) if qs.exists(): raise serializers.ValidationError("User with this email already exist") return value def validate_username(self, value): qs = User.objects.filter(username__iexact=value) if qs.exists(): raise serializers.ValidationError("User with this username already exist") return value def get_token(self, obj): payload = jwt_payload_handler(obj) token = jwt_encode_handler(payload) return token def validate(self, data): pw = data.get('password') pw2 = data.pop('password2') if pw != pw2: raise serializers.ValidationError("Passwords must match") return data def create(self, validated_data): if self.context['request'].user.is_authenticated: raise serializers.ValidationError("You are already registered!") account_activation_token = AccountActivationTokenGenerator() user_obj = User(username=validated_data.get('username'), email=validated_data.get('email')) user_obj.set_password(validated_data.pop('password')) user_obj.is_active = False user_obj.save() current_site = "http://127.0.0.1:8000" # current_site = get_current_site(self) message = render_to_string('acc_active_email.html', { 'user': user_obj, 'domain': current_site, # 'domain': current_site.domain, 'uid': urlsafe_base64_encode(force_bytes(user_obj.id)).decode(), 'token': account_activation_token.make_token(user_obj), }) mail_subject = 'Activate your blog account.' to_email = [validated_data['email']] email = EmailMessage(mail_subject, message, to=[to_email]) email.send() return user_obj class ChangePasswordSerializer(serializers.Serializer): old_password = serializers.CharField() new_password = serializers.CharField() def validate(self, data): if not self.context['request'].user.check_password(data['old_password']): raise serializers.ValidationError("Old Password is not correct") return data class LoginSerializer(serializers.ModelSerializer): password = serializers.CharField(style={'input_type': 'password'}, write_only=True) class Meta: model = User fields = [ 'username', 'password', ]
[ "grigorevskiiy@gmail.com" ]
grigorevskiiy@gmail.com
0de7327d86756938e699ab1aa7e2a34b1461edd3
bf1b160c1b5ea773469aae2f788c91f3ffde6843
/dirproc.py
4567f063ca3c814c1aedf9bfd0294b1f27e84904
[]
no_license
aedancullen/pma-experiments
3ca2051448bc841e983b1bbb7e3eaecfcf92dbe3
4761e64c06240bccc27dbca5a7bf92d1aa9f7f6a
refs/heads/master
2023-03-30T00:57:01.414030
2021-03-29T17:15:58
2021-03-29T17:15:58
282,776,581
0
0
null
null
null
null
UTF-8
Python
false
false
5,008
py
import vamp import multiprocessing as mp import h5py from spleeter.separator import Separator from spleeter.audio.adapter import get_default_audio_adapter import os import numpy as np import time sr = 44100 dl_prefix = "dl/" audio_loader = get_default_audio_adapter() separator = Separator("spleeter:4stems") def monomix(data): if len(data.shape) > 1 and data.shape[1] > 1: data = data.mean(axis=1) return data def process(combname, vocal, other, bass): chordmix_novocal = np.mean([other, bass], axis=0) chordmix_withvocal = np.mean([vocal, other, bass], axis=0) print("====>", combname, "VAMP...") vocalmelody = vamp.collect(vocal, sr, "mtg-melodia:melodia", parameters={"voicing": 0.2}) othermelody = vamp.collect(other, sr, "mtg-melodia:melodia", parameters={"voicing": 0.2}) bassmelody = vamp.collect(bass, sr, "mtg-melodia:melodia", parameters={"voicing": 0.2}) chords_novocal = vamp.collect(chordmix_novocal, sr, "nnls-chroma:chordino") chordnotes_novocal = vamp.collect(chordmix_novocal, sr, "nnls-chroma:chordino", output="chordnotes") chords_withvocal = vamp.collect(chordmix_withvocal, sr, "nnls-chroma:chordino") chordnotes_withvocal = vamp.collect(chordmix_withvocal, sr, "nnls-chroma:chordino", output="chordnotes") # Make vampyhost "RealTime" objects into floats for pickling else they turn to zero # (multiprocessing uses pickles for IPC) p_vocalmelody = pickleable_melody(vocalmelody) p_othermelody = pickleable_melody(othermelody) p_bassmelody = pickleable_melody(bassmelody) p_chords_novocal = pickleable_chords(chords_novocal) p_chordnotes_novocal = pickleable_chordnotes(chordnotes_novocal) p_chords_withvocal = pickleable_chords(chords_withvocal) p_chordnotes_withvocal = pickleable_chordnotes(chordnotes_withvocal) return (combname, p_vocalmelody, p_othermelody, p_bassmelody, p_chords_novocal, p_chordnotes_novocal, p_chords_withvocal, p_chordnotes_withvocal) def pickleable_melody(melody): melody["vector"] = list(melody["vector"]) melody["vector"][0] = float(melody["vector"][0]) return melody["vector"] def pickleable_chords(chords): for subdict in chords["list"]: subdict["timestamp"] = float(subdict["timestamp"]) return chords["list"] def pickleable_chordnotes(chordnotes): for subdict in chordnotes["list"]: subdict["timestamp"] = float(subdict["timestamp"]) subdict["duration"] = float(subdict["duration"]) return chordnotes["list"] def push_chord_datasets(group, prefix, chords, chordnotes): chord_timestamps = [] chord_labels = [] for chordchange in chords: chord_timestamps.append(chordchange["timestamp"]) chord_labels.append(chordchange["label"].encode("ascii")) chord_timestamps_dset = group.create_dataset(prefix + "_chord_timestamps", data=chord_timestamps) chord_labels_dset = group.create_dataset(prefix + "_chord_labels", data=chord_labels) chordnote_timestamps = [] chordnote_values = [] for chordnote in chordnotes: chordnote_timestamps.append(chordnote["timestamp"]) chordnote_values.append(chordnote["values"][0]) chordnote_timestamps_dset = group.create_dataset(prefix + "_chordnote_timestamps", data=chordnote_timestamps) chordnote_values_dset = group.create_dataset(prefix + "_chordnote_values", data=chordnote_values) def writeout(results): combname, vocalmelody, othermelody, bassmelody, chords_novocal, chordnotes_novocal, chords_withvocal, chordnotes_withvocal = results h5file = h5py.File("dirproc_dataset.hdf5", 'a') group = h5file.create_group(combname) vocalmelody_dset = group.create_dataset("vocalmelody", data=vocalmelody[1]) vocalmelody_dset.attrs["step"] = vocalmelody[0] othermelody_dset = group.create_dataset("othermelody", data=othermelody[1]) othermelody_dset.attrs["step"] = othermelody[0] bassmelody_dset = group.create_dataset("bassmelody", data=bassmelody[1]) bassmelody_dset.attrs["step"] = bassmelody[0] push_chord_datasets(group, "novocal", chords_novocal, chordnotes_novocal) push_chord_datasets(group, "withvocal", chords_withvocal, chordnotes_withvocal) h5file.close() print("====>", combname, "DONE") h5file = h5py.File("dirproc_dataset.hdf5", 'w') h5file.close() pool = mp.Pool(mp.cpu_count()) songids = [] for filename in os.listdir(dl_prefix): waveform, _ = audio_loader.load(dl_prefix + filename, sample_rate=sr) prediction = separator.separate(waveform) vocal = monomix(prediction["vocals"]) other = monomix(prediction["other"]) bass = monomix(prediction["bass"]) songids.append(filename) while len(pool._cache) > mp.cpu_count(): time.sleep(0.1) # hacky ratelimit to prevent filling memory with waveforms awaiting pool pool.apply_async(process, (filename[:-4], vocal, other, bass), callback=writeout) print(len(pool._cache)) print(len(songids), "total") pool.close() pool.join()
[ "aedan@rice.edu" ]
aedan@rice.edu
a428b797a473db11da72bd76cddfc3e9d9024073
5ef98938002a17274f5f5f27695ce45479203803
/Python/Person.py
24b07069923b1827bb2b84bbcc461d1c43b529d7
[]
no_license
rafaelaleman/hello-world
8c1d39325425586ddf1420677b502a87637ab5bf
9fe376e9a54ea726fb534c7c8b40c8a4c29ea4ad
refs/heads/master
2020-05-01T11:06:35.184270
2019-03-31T22:34:52
2019-03-31T22:34:52
177,434,382
0
0
null
2019-03-31T22:12:41
2019-03-24T15:39:55
Python
UTF-8
Python
false
false
226
py
class Person: def __init__(self, name, dateOfBirth): self.name = name self.dateOfBirth = dateOfBirth def SetName(self, name): self.name = name def GetName(self): return self.name
[ "rafael.enrique.aleman@gmail.com" ]
rafael.enrique.aleman@gmail.com
347e504022c15c3474080d2bfbf73452eae2e1ee
f0077cac0890461be408d7114a96d3e3b48bf2a8
/timing/timing.py
8b95c0e5da313018f1f25d4ab33e917c1678340c
[]
no_license
Kattusite/resistor-calc
479090c445854bb46f2499e1cebc52966bd0ce4a
271ced490e7feeab71d5fe31fba42687b78658f7
refs/heads/master
2021-02-12T01:27:47.843079
2020-03-10T19:01:08
2020-03-10T19:01:08
244,547,687
1
1
null
2020-03-04T22:15:56
2020-03-03T05:13:55
Python
UTF-8
Python
false
false
1,595
py
import multiprocessing import time DEFAULT_TIMEOUT = 180 DEFAULT_RANGE = range(1,15) class Timing: # https://stackoverflow.com/questions/14920384/stop-code-after-time-period @classmethod def timeout(cls, t, f, *args, **kwargs): p = multiprocessing.Process(target=f, name=f.__name__, args=args, kwargs=kwargs) p.start() p.join(t) if p.is_alive(): p.terminate() p.join() return True return False @classmethod def test(cls, f, *args, note="", ns=DEFAULT_RANGE, t=DEFAULT_TIMEOUT, **kwargs): """Call f with successively higher n until it times out""" # Sometimes convenient to pass "None" to mean "pick your own default" ns = ns if ns else DEFAULT_RANGE t = t if t else DEFAULT_TIMEOUT print(f"====== Timing Test for {f.__name__} ======") if note: print(note) lastDuration = None for n in ns: print(f" {f.__name__}({n}) ... ", end="") start = time.time() timedOut = cls.timeout(t, f, n, *args, **kwargs) end = time.time() duration = end-start ratio = 1 if lastDuration: ratio = duration / lastDuration lastDuration = duration if not timedOut: print(f" {duration:8.4f}s ({ratio:.2f}x)") else: print(f" {duration:8.4f}s (>{ratio:.2f}x) timed out!") return @classmethod def waitFor(cls, t): time.sleep(t) return
[ "Kattusite@users.noreply.github.com" ]
Kattusite@users.noreply.github.com
08af3fef904498d481773d913704ab9241ed5a9e
033fb08be4d1ebd99ff9d4a790dc5c86d82f686c
/landing_page/migrations/0005_auto_20190127_1234.py
8efc61bfbafd2083493089424534ebe6ad309f3c
[]
no_license
MasoudMusa/Django-Blog-App
8a145c68520d50d8384fd48badbebcb097c663ed
48b8bd31608a9d3a0e65a977b7961be9ad774fa6
refs/heads/master
2020-04-25T18:38:32.919036
2019-02-27T21:14:38
2019-02-27T21:14:38
172,991,061
0
0
null
null
null
null
UTF-8
Python
false
false
904
py
# Generated by Django 2.1.4 on 2019-01-27 09:34 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('landing_page', '0004_auto_20190126_2003'), ] operations = [ migrations.CreateModel( name='BlogDetails', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('post_image', models.ImageField(blank=True, upload_to='images')), ], ), migrations.RemoveField( model_name='blogstuff', name='post_image', ), migrations.AddField( model_name='blogdetails', name='blog', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='landing_page.BlogStuff'), ), ]
[ "mwendamusa20@gmail.com" ]
mwendamusa20@gmail.com
1e49579932855cab609f28bec4b2a2907bad1454
f04ebb3ad2b70bed9c35301b870df170f082c721
/models/websocket_models.py
dcfbefad1b47ed4ea2f71a6edf8d080a7ad93de1
[]
no_license
sulihua512/customs_edi
8b8641d0b2b4d49fa083c8aa87ee2611fd6febf6
bde5d6a628ccceee8f3dbb1844edcb724cf0bb1b
refs/heads/master
2023-03-17T07:11:29.450646
2018-01-05T10:08:04
2018-01-05T10:08:04
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,131
py
# coding:utf-8 from datetime import datetime from flask import g from exts import db from models.base_models import BaseModel from models.front_models import Front_User from models.customs_models import Employee,Customs_User class Message(db.Model): __tablename__='message' id=db.Column(db.Integer,primary_key=True,autoincrement=True) content=db.Column(db.String(200),nullable=False) create_time=db.Column(db.DateTime,default=datetime.now) front_user_id=db.Column(db.Integer,db.ForeignKey('front_user.id')) employee_id=db.Column(db.Integer,db.ForeignKey('employee.id')) customs_user_id=db.Column(db.Integer,db.ForeignKey('customs_user.id')) front_user_sender=db.relationship('Front_User',backref='sender_messages') employee_sender=db.relationship('Employee',backref='sender_messages') customs_user_sender=db.relationship('Customs_User',backref='sender_messages') front_user_receivers=db.relationship('Front_User',secondary='message_to_front_user',backref='receiver_messages') employee_receivers=db.relationship('Employee',secondary='message_to_employee',backref='receiver_messages') customs_user_receivers=db.relationship('Customs_User',secondary='message_to_customs_user',backref='receiver_messages') @property def sender(self): li=[self.front_user_sender,self.employee_sender,self.customs_user_sender] for i in li: if i is not None: return i @classmethod def str_handler(cls,value): model,id=value.split('__') return (model,id) @sender.setter def sender(self,value=None): assert value model,id=self.str_handler(value) try: send_model=eval(model).query.filter_by(id=id).first() send_name=model.lower()+'_sender' setattr(self,send_name,send_model) except Exception as e: print e def receivers(cls,value): assert value model, id = cls.str_handler(value) if id=='none': if model=='All': # 所有人喊话 return list(Front_User.query)+list(Employee.query)+list(Customs_User) else: # 群聊 return list(eval(model).query) else: # 单聊 model=eval(model).query.filter_by(id=id).first() return model def set_receivers(self,value): model,id=self.str_handler(value) receiver_usernames = model.lower() + '_receivers' if id == 'none': if model == 'All': # front_users = Front_User.query.all() # customs_users = Customs_User.query.all() # employees = Employee.query.all() # self.front_user_receivers += front_users # self.customs_user_receivers += customs_users # self.employee_receivers += employees pass else: receiver_users=self.receivers(value) setattr(self, receiver_usernames, receiver_users) else: receiver_user = self.receivers(value) setattr(self, receiver_usernames, [receiver_user]) class Message_To_Front_User(db.Model): __tablename__='message_to_front_user' message_id=db.Column(db.Integer,db.ForeignKey('message.id'),primary_key=True) front_user_id=db.Column(db.Integer,db.ForeignKey('front_user.id'),primary_key=True) class Message_To_Employee(db.Model): __tablename__ = 'message_to_employee' message_id = db.Column(db.Integer, db.ForeignKey('message.id'), primary_key=True) employee_id = db.Column(db.Integer, db.ForeignKey('employee.id'), primary_key=True) class Message_To_Customs_User(db.Model): __tablename__ = 'message_to_customs_user' message_id = db.Column(db.Integer, db.ForeignKey('message.id'), primary_key=True) customs_user_id = db.Column(db.Integer, db.ForeignKey('customs_user.id'), primary_key=True)
[ "rhj231224@gmail.com" ]
rhj231224@gmail.com
3223a6842c3cb09ccf5e2db3d0d7b4da77c60242
8a26b188244c3058cbce4ddb7947af49b500acf0
/m07/m07p02.py
759156ec6c37ebec3ecea0dd63730aa98608b959
[]
no_license
montekang/Python
591de7952957b4ce14bd7619dc05be742d89bc08
b53a7865da68507d4f811e6bb6c5cfc450c13ee3
refs/heads/master
2021-03-23T02:26:48.741113
2020-03-15T06:54:00
2020-03-15T06:54:00
247,415,711
0
0
null
null
null
null
UTF-8
Python
false
false
138
py
#!/usr/bin/python from immlib import Debugger def main(args): imm = Debugger() imm.log("modae.kang@edu.sait.ca") return ""
[ "noreply@github.com" ]
montekang.noreply@github.com
c3b68c32731103ac028550e196ad5aada872bda8
f81ce2b7a92b47d954e9519dae6c286ad086950b
/p2920.py
29576751a3f8ff9682ebcb3b608c175a9f188a88
[]
no_license
JiHaeK/Algorithm
1ae89cf1a7a8b87a9fc0e35db20bf27bffa16cf4
562b3714857120d19f5b42789be9907cc7f659f6
refs/heads/master
2020-04-14T13:08:56.634730
2019-05-25T09:43:27
2019-05-25T09:43:27
163,860,408
0
0
null
null
null
null
UTF-8
Python
false
false
210
py
n=[] n=list(map(int, input().split(" "))) ascen=[1, 2, 3, 4, 5, 6, 7, 8] desen=[8, 7, 6, 5, 4, 3, 2, 1] if (n == ascen) : print("ascending") elif (n == desen) : print("descending") else : print("mixed")
[ "wlgo6020@naver.com" ]
wlgo6020@naver.com
0dfdc66aa23376b83341616ed4bbec1be609524c
cfc6fd2cbf907501749203383b4df59c4579efd5
/account/urls.py
a6aac7394421b91d60191e0b54d8334185b90f41
[]
no_license
Snebie/backend
f5e7ebe4dd5eb2559fd3dad4b0b248d68fad5672
369b0d5086bc55f8f14f447614fff547997a11b5
refs/heads/master
2021-02-09T22:38:48.737829
2020-02-29T20:50:01
2020-02-29T20:50:01
null
0
0
null
null
null
null
UTF-8
Python
false
false
954
py
from django.urls import path, re_path from rest_framework.urlpatterns import format_suffix_patterns from rest_framework_simplejwt.views import TokenRefreshView, TokenObtainPairView from account.views import UserPost, UserPut, CurrentUserView, reset_password_request, reset_password_confirmed urlpatterns = [ path('', UserPost.as_view(), name='user_post'), path('token/', TokenObtainPairView.as_view(), name='token_obtain_pair'), path('token/refresh/', TokenRefreshView.as_view(), name='token_refresh'), path('<int:pk>/', UserPut.as_view(), name='user_put'), path('user/', CurrentUserView.as_view(), name='current_user'), path('reset_password/', reset_password_request, name='reset_password_request'), re_path(r'auth/reset_password_confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/', reset_password_confirmed, name='reset_password_confirmed'), ] urlpatterns = format_suffix_patterns(urlpatterns)
[ "ggerholm@kth.se" ]
ggerholm@kth.se
c71b8c954c2c1cf2b734ad2b5bd1e960fc3c9e5b
f73fa3f5ae95f2c2eea3d62cb187bc02444ae46e
/project05/Driver.py
f94689322b82ccb390ee41a550188dfb69d63ea9
[]
no_license
guti15/comp401
6da40c74e5ec8d5ed4e43d7b89b2e30e7eda8ab9
f075958b1f4d53fe4169e778002e5ab477e01b8b
refs/heads/master
2021-01-01T18:48:42.827767
2015-06-07T15:57:40
2015-06-07T15:57:40
29,693,714
0
0
null
null
null
null
UTF-8
Python
false
false
1,491
py
from __future__ import division from matplotlib.patches import Polygon import matplotlib.pyplot as plt import pylab import scipy import numpy as np # functions used dot = scipy.dot sin = scipy.sin cos = scipy.cos plot = pylab.plot grid = pylab.grid axis = pylab.axis rad = lambda ang: ang*scipy.pi/180 # Function that returns coordnitates of rotated img of shape def Rotate2D(pts, cnt, ang=scipy.pi/4): return dot(pts - cnt, scipy.array([ [cos(ang),sin(ang)], [-sin(ang),cos(ang)] ]) )+cnt # pts == points or coordinates of desired shape # points +1(x,y) to close the Polygon shape # pts = scipy.array([[0,0],[6,0], # [2,6],[0,0]]) # triangle pts = scipy.array([[-6,0], [-6,-3], [6,-3],[6,0], [3, 6],[-3,6], [-6,0]]) # hex coord # plot(*pts.T,lw=5,color='0.5') for ang in scipy.arange( 0, 2*scipy.pi, scipy.pi/8): # loop to keep plotting shape ots = Rotate2D(pts, scipy.array([2.0,3.0]), ang) # call function to get new set of points pylab.plot(*ots.T, color='0.2') # color '0.2' keeps it B&W pylab.axis('image') grid(False) # Get rid of grid lines when plotting frame = pylab.gca() frame.axes.get_xaxis().set_ticks([]) # takes of x coord tick marks frame.axes.get_yaxis().set_ticks([]) # takes of y coord tick marks frame.axes.set_ylim(-16,16) # creates a screen grid with y limit of +/- 16 frame.axes.set_xlim(-16,16) # creates a screen grid with x limit of +/- 16 plt.savefig('final_print.svg',linestyle = '') plt.show()
[ "guti310@gmail.com" ]
guti310@gmail.com
dc88cd8346a380e0a12c0d652cce2f29e166d064
8df6f0adf9892b848416d090db1b667b428732a4
/app.py
b164c6fec4057661ad446f0dc535c360aaaccdbf
[]
no_license
prataplyf/Verifyotp
47803a7da5584f3cc3f9fe764791221404dd1faf
e12dcbf7d6a636ae6a59edea12fbe948f3b0082e
refs/heads/master
2021-06-28T03:02:49.689434
2020-08-21T08:32:23
2020-08-21T08:32:23
225,693,439
1
0
null
2021-03-20T02:22:34
2019-12-03T18:55:54
HTML
UTF-8
Python
false
false
2,231
py
from flask import Flask, render_template, request, url_for import smtplib # for send message to mail from random import randint # to generate random number import re # for email validation import pymongo # for connect with database from pymongo import MongoClient myclient = MongoClient("mongodb+srv://<dbname>:<password>@cluster0-rwgat.mongodb.net/test?retryWrites=true&w=majority") mydb = myclient.prataplyf mycol = mydb["emails"] app = Flask(__name__) #otp = -1 # email = '' randotp = randint(1000, 9999) # Random 4 digit OTP Generator otp = randotp @app.route('/') def home(): return render_template('home.html') @app.route('/verify',methods = ['POST', 'GET']) def result(): global email, otp if request.method == 'POST': verify = request.form email = request.form.get('email') #otp = request.form.get('otp') if email in [temp['email'] for temp in mycol.find({}, {"_id":0, "email":1})]: global msg # alreay verified message msg = "Email Already Verified" return render_template('status.html', result = email, message=msg) else: s = smtplib.SMTP('smtp.gmail.com', 587) s.starttls() s.login("xxxxxxxx@gmail.com", "xxxxxxxxxxx") otpmessage = "Your OTP " + str(otp) s.sendmail("vacancykey123@gmail.com", email, otpmessage) print("sent mail") #mycol.insert_one({ "email": email}) print("email entered!") s.quit() return render_template('verify.html', result = verify ) @app.route('/status', methods = ['POST','GET']) def status(): if request.method == 'POST': sentotp = int(request.form.get('otp')) semail = email if sentotp == otp: mycol.insert_one({ "email": email}) msg = "Email Verified" return render_template('status.html', email= semail, message = msg) else: msg = "Wrong OTP, Please check again!" return render_template("status.html", message = msg) if __name__ == '__main__': app.run(debug = True)
[ "noreply@github.com" ]
prataplyf.noreply@github.com
11a3f51ec70adb3184c56f01d9e54764343ce613
2dda5b4a2e5ed5aac697fdf3796ddecfa2cc7625
/Completed Exercise Code/Python/Multiple plots-143.py
a964b07108fa9a175a6b85d76bef9758484a81b1
[]
no_license
rajhiren/DataQuest
66c2381cd6fcb93f82db258e3088b017b50ed2d6
c5d603715aa916a8c82846b199208c7496641639
refs/heads/master
2020-07-12T22:49:04.969555
2020-05-14T10:37:31
2020-05-14T10:37:31
204,926,607
1
0
null
null
null
null
UTF-8
Python
false
false
2,737
py
## 1. Recap ## import pandas as pd import matplotlib.pyplot as plt unrate = pd.read_csv('unrate.csv') unrate['DATE'] = pd.to_datetime(unrate['DATE']) plt.plot(unrate['DATE'].head(12),unrate['VALUE'].head(12)) plt.xticks(rotation=90) plt.xlabel("Month") plt.ylabel("Unemployment Rate") plt.title("Monthly Unemployment Trends, 1948") plt.show() ## 3. Matplotlib Classes ## import matplotlib.pyplot as plt fig = plt.figure() ax1 = fig.add_subplot(2,1,1) ax2 = fig.add_subplot(2,1,2) plt.show() ## 5. Adding Data ## fig = plt.figure() ax1 = fig.add_subplot(2,1,1) ax2 = fig.add_subplot(2,1,2) ax1.plot(unrate[0:12]['DATE'], unrate['VALUE'][0:12]) ax2.plot(unrate[12:24]['DATE'], unrate['VALUE'][12:24]) plt.show() ## 6. Formatting And Spacing ## fig = plt.figure(figsize=(12,5)) ax1 = fig.add_subplot(2,1,1) ax2 = fig.add_subplot(2,1,2) ax1.plot(unrate[0:12]['DATE'], unrate[0:12]['VALUE']) ax1.set_title('Monthly Unemployment Rate, 1948') ax2.plot(unrate[12:24]['DATE'], unrate[12:24]['VALUE']) ax2.set_title('Monthly Unemployment Rate, 1949') plt.show() ## 7. Comparing Across More Years ## fig = plt.figure(figsize=(12,12)) for i in range(5): ax = fig.add_subplot(5,1,i+1) start_index = i*12 end_index = (i+1) * 12 subset = unrate[start_index:end_index] ax.plot(subset['DATE'], subset['VALUE']) plt.show() ## 8. Overlaying Line Charts ## unrate['MONTH'] = unrate['DATE'].dt.month fig = plt.figure(figsize=(6,3)) ax1 = plt.plot(unrate['MONTH'][0:12], unrate['VALUE'][0:12], c='red') ax2 = plt.plot(unrate['MONTH'][12:24], unrate['VALUE'][12:24], c='red') plt.show() ## 9. Adding More Lines ## fig = plt.figure(figsize=(10,6)) colors = ['red', 'blue', 'green', 'orange', 'black'] for i in range(5): start_index = i*12 end_index = (i+1)*12 subset = unrate[start_index:end_index] plt.plot(subset['MONTH'],subset['VALUE'], c=colors[i]) plt.plot() ## 10. Adding A Legend ## fig = plt.figure(figsize=(10,6)) colors = ['red', 'blue', 'green', 'orange', 'black'] for i in range(5): start_index = i*12 end_index = (i+1)*12 subset = unrate[start_index:end_index] plt.plot(subset['MONTH'], subset['VALUE'], c=colors[i], label=str(1948+i)) plt.legend(loc='upper left') plt.show() ## 11. Final Tweaks ## fig = plt.figure(figsize=(10,6)) colors = ['red', 'blue', 'green', 'orange', 'black'] for i in range(5): start_index = i*12 end_index = (i+1)*12 subset = unrate[start_index:end_index] label = str(1948 + i) plt.plot(subset['MONTH'], subset['VALUE'], c=colors[i], label=label) plt.legend(loc='upper left') plt.title("Monthly Unemployment Trends, 1948-1952") plt.xlabel("Month, Integer") plt.ylabel("Unemployment Rate, Percent") plt.show()
[ "hiren.raj@icloud.com" ]
hiren.raj@icloud.com
15af76b56f23169ecae06276f96acb2561d4c1b9
6480db97bf64fe5020bca084c38b7728ba9a1b9a
/pursuit/src/mvp_landing/urls.py
e10ed7a8489bdc075f57077b42c3bc7754100fd9
[]
no_license
masterfung/mvp_landing-Django
056727d3c7107f18ea5203b98816bad9bb94edaa
4ae2d9128e13616ca2e4e82e36927a352f515858
refs/heads/master
2021-01-13T02:35:57.392427
2014-06-02T14:30:37
2014-06-02T14:30:37
null
0
0
null
null
null
null
UTF-8
Python
false
false
731
py
from django.conf.urls import patterns, include, url from django.conf import settings from django.conf.urls.static import static from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', # Examples: #has to be in order when it comes to views url(r'^$', 'signups.views.home', name='home'), # url(r'^blog/', include('blog.urls')), url(r'^thank-you/$', 'signups.views.thankyou', name='thankyou'), url(r'^about-us/$', 'signups.views.aboutus', name='aboutus'), url(r'^admin/', include(admin.site.urls)), ) if settings.DEBUG: urlpatterns += static(settings.STATIC_URL, document_root = settings.STATIC_ROOT) urlpatterns += static(settings.MEDIA_URL, document_root = settings.MEDIA_ROOT)
[ "hungmasterj@gmail.com" ]
hungmasterj@gmail.com
738b239c95b2ac7b86f5a8bdfee732873570c675
234196b7db84a77453c8b4fd8a268e5ad1276f2d
/submissions/Fritz/Project/ConnectFour.py
27ca3399b991472309d01f377c3e7fa9035e365f
[ "MIT" ]
permissive
belmont-acreeg/aima-python
5e3913a16f15c0415a00b02a6804ed4db8031493
4a168e54b4c1ff53ebf05374210d2211a372fabc
refs/heads/master
2021-01-01T18:06:55.696086
2016-12-13T16:58:15
2016-12-13T16:58:15
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,872
py
from games import Game from copy import deepcopy class C4Game(Game): def __init__(self, state): self.initial = state def actions(self, state): columns = {0, 1, 2, 3, 4, 5, 6} # remove the columns that are full #.grid[column]) >= self.size['r'] for c in [0, 1, 2, 3, 4, 5, 6]: if len(state.grid[c]) >= 6: columns.remove(c) return list(columns) # for c in [ 0, 1, 2, 3, 4, 5, 6 ]: # if state.grid[c] >= state.size['r']: # columns.remove(c) # return list(columns) # defines the order of play def opponent(self, player): if player == 'X': return 'O' if player == 'O': return 'X' return None def to_move(self, player): if player.first_player == False: return 'O' if player.first_player == True: return 'X' return None def vertical4(self, state, player): for c in range(state.size['c']): height = len(state.grid[c]) if height < 4: return 0 count = 0 for r in range(height): if state.grid[c][r] != player: count += 1 else: break if count == 4: return 1 return 0 def horizontal4(self, state, player): for r in range(state.size['r']): width = len(state.grid[r]) if width < 4: return 0 count = 0 for c in range(width): if state.grid[r][c] != player: count += 1 else: break if count == 4: return 1 return 0 def rightDiagonal4(self, state, player): pass def leftDiagonal4(self, state, player): pass def utility(self, state, player): "Return the value to player; 1 for win, -1 for loss, 0 otherwise." # if self.vertical4(state, player): # return 1 # if self.horizontal4(state, player): # return 1 #if self.rightDiagonal4(state, player): # return 1 #if self.leftDiagonal4(state, player): # return 1 opponent = self.opponent(player) if ConnectFour.drop(state,0) < 0 : #ConnectFour.drop(state,0) return -1 if ConnectFour.drop(state, 1) < 0: return -1 if ConnectFour.drop(state, 2) < 0: return -1 if ConnectFour.drop(state, 3) < 0: return -1 if ConnectFour.drop(state, 4) < 0: return -1 if ConnectFour.drop(state, 5) < 0: return -1 if ConnectFour.drop(state, 6) < 0: return -1 if ConnectFour.drop(state, 7) < 0: return -1 else: return 0 # if self.vertical4(state, opponent): # return -1 # if self.horizontal4(state, opponent): # return -1 # if self.rightDiagonal4(state, opponent): # return -1 # if self.leftDiagonal4(state, opponent): # return -1 # add other heuristics return 0 # try: # return state.utility if player == 'X' else -state.utility # except: # pass # board = self.gameState.grid # util = self.check_win(board) #, 'X') # if util == 0: # util = -self.check_win(board) #, 'O') # state.utility = util # return util if player == 'X' else -util def terminal_test(self, state): "A state is terminal if it is won or there are no empty squares." if self.utility(state, 'X') == 1: return True if self.utility(state, 'O') == 1: return True if len(self.actions(state)) == 0: return True return False ''' state is an instance of ConnectFour move is 0..6 ''' def result(self, state, move): newState = deepcopy(state) # drop the move into the newState newState.drop(move) return newState #def utility(self, state, player): # "Player relative score" # return 0 def terminal_test(self, state): "A state is terminal there's 4 in a row or the board is full" return state.check() != False class ConnectFour: def __init__(self, columns=7, rows=6, player1='X', player2='O'): self.size = {'c': columns, 'r': rows} # self.grid = [] self.first_player = True self.players = {True: player1, False: player2} self.game_over = False self.grid = [[] for i in range(self.size['c'])] def drop(self, column): # if self.game_over: return False if column < 0 or column >= self.size['c']: return False if len(self.grid[column]) >= self.size['r']: return False self.grid[column].append(self.players[self.first_player]) c = self.check() if c == False: self.first_player = not self.first_player return 1 else: self.game_over = c return -1 def check(self): d = 0 for i, column in enumerate(self.grid): d += len(self.grid[i]) for j, row in enumerate(column): h = i + 4 <= self.size['c'] v = j + 4 <= len(self.grid[i]) if v: if 1 == len(set(self.grid[i][j:j + 4])): return True if h: if len(self.grid[i]) > j and len(self.grid[i + 1]) > j and len(self.grid[i + 2]) > j and len( self.grid[i + 3]) > j: s_r = set() for k in range(4): s_r.add(self.grid[i + k][j]) if 1 == len(s_r): return True if h: s = set() for k in range(4): if len(self.grid[i + k]) > j + k: s.add(self.grid[i + k][j + k]) else: s.add('??') if 1 == len(s): return True if h and j - 4 + 1 >= 0: s = set() for k in range(4): if len(self.grid[i + k]) > j - k: s.add(self.grid[i + k][j - k]) else: s.add('??') if 1 == len(s): return -1 if d == self.size['c'] * self.size['r']: return 'draw' return False
[ "simeon.fritz@pop.belmont.edu" ]
simeon.fritz@pop.belmont.edu
956bbb329686871bba3cb70fda5cba273d1f374f
227e317540726122d948c1950bf980d464988501
/correct_unescaped_txtfile_with_delimiter.py
7978368e6208c90dbb9dc045fc80f676c6d86d89
[]
no_license
jhajagos/agile_data_tools
86462bd677f2551bd381cfe8ef04cbbe83c35f78
9c86f9ea79226468ffd79419b485cad73ecb201e
refs/heads/master
2021-07-06T10:03:45.233371
2021-04-30T21:22:37
2021-04-30T21:22:37
17,298,752
1
0
null
null
null
null
UTF-8
Python
false
false
1,174
py
__author__ = 'jhajagos' import sys import csv def main(file_name, delimiter="|"): with open(file_name, "r") as f: first_line = f.next() positions = [] string_to_parse = first_line last_position = 0 while delimiter in string_to_parse: match_position = string_to_parse.index(delimiter) positions += [(last_position, last_position + match_position - 1)] string_to_parse = first_line[last_position + match_position + 1:] last_position = last_position + match_position + 1 with open(file_name, "r") as f: with open(file_name + ".cleaned.csv", "wb") as fw: csv_writer = csv.writer(fw) for line in f: cells_to_write = [] for pos in positions: cells_to_write += [line[pos[0]:pos[1]+1].rstrip()] last_position = pos[1] cells_to_write += [line[last_position + 2:-1].rstrip()] csv_writer.writerow(cells_to_write) if __name__ == "__main__": if len(sys.argv) == 3: main(sys.argv[1], sys.argv[2]) else: main(sys.argv[1])
[ "risk.limits@gmail.com" ]
risk.limits@gmail.com
1575804de3dd437ba9e8b545b69edced761183fd
78d425c98f093e01dd78c15ffa76cf50f7e4fe1e
/tests/tier1/tc_1087_check_vdc_virtual_pool_revoked_in_guest_after_host_unattached.py
c2f7f74a50aa84f8b13159dec95faef8625f8fe0
[]
no_license
Junefen/virtwho-ci
57ef8637a78605fd3f2b1d3eb31031ba2b0de480
23e144171d2cc6ee87edfefdace8a25eb3e7bc65
refs/heads/master
2023-03-19T04:16:08.055779
2021-09-29T03:52:08
2021-09-29T03:52:08
194,606,208
0
0
null
2019-07-01T05:35:22
2019-07-01T05:35:22
null
UTF-8
Python
false
false
2,453
py
# coding:utf-8 from virt_who import * from virt_who.base import Base from virt_who.register import Register from virt_who.testing import Testing class Testcase(Testing): def test_run(self): self.vw_case_info(os.path.basename(__file__), case_id='RHEL-134064') self.vw_case_init() # case config results = dict() virtwho_conf = "/etc/virt-who.conf" self.vw_option_enable('[global]', virtwho_conf) self.vw_option_enable('debug', virtwho_conf) self.vw_option_update_value('debug', 'True', virtwho_conf) config_name = "virtwho-config" config_file = "/etc/virt-who.d/{0}.conf".format(config_name) self.vw_etc_d_mode_create(config_name, config_file) host_name = self.get_hypervisor_hostname() host_uuid = self.get_hypervisor_hostuuid() register_config = self.get_register_config() vdc_physical_sku = register_config['vdc'] vdc_virtual_sku = register_config['vdc_bonus'] # case steps logger.info(">>>step1: run virt-who and check the mapping info is sent or not") data, tty_output, rhsm_output = self.vw_start() res = self.op_normal_value(data, exp_error=0, exp_thread=1, exp_send=1) results.setdefault('step1', []).append(res) logger.info(">>>step2: attach physical sku for host/hypervisor") sku_attrs = self.system_sku_attr(self.ssh_host(), vdc_physical_sku, "physical") physical_pool_id = sku_attrs['pool_id'] self.vw_web_attach(host_name, host_uuid, physical_pool_id) logger.info(">>>step3: attach virtual sku by pool_id in guest") sku_attrs = self.system_sku_attr(self.ssh_guest(), vdc_virtual_sku, "virtual") virtual_pool_id = sku_attrs['pool_id'] self.system_sku_attach(self.ssh_guest(), pool_id=virtual_pool_id) output = self.system_sku_consumed(self.ssh_guest()) res = self.vw_msg_search(output, vdc_virtual_sku, exp_exist=True) results.setdefault('step3', []).append(res) logger.info(">>>step4: unattach physical sku from host/hypervisor and check virtual pool") self.vw_web_unattach(host_name, host_uuid) output = self.system_sku_consumed(self.ssh_guest(), exp_exist=False) res = self.vw_msg_search(output, vdc_virtual_sku, exp_exist=False) results.setdefault('step4', []).append(res) # case result self.vw_case_result(results)
[ "hsun@redhat.com" ]
hsun@redhat.com
d4458b6f75061aaaeca1df5716ef82fabd0eef21
3d24e22648c2b1420ad7c385ae4d166a5b4eb77b
/Chap06/my_friend.py
86f9c0ae2601ca58b31b21256ae1a1e9e96329a3
[]
no_license
LemonTre/python_work
f8f41c1cf9501e83e53b8b0d2f6df5de4176ea8b
721e115da18256103bc2f2bd93b3c2ad20608c04
refs/heads/master
2021-07-05T11:16:50.807684
2017-09-29T06:13:09
2017-09-29T06:13:09
105,234,975
0
0
null
null
null
null
UTF-8
Python
false
false
312
py
friend_message = { 'first_name': 'Jane', 'last_name': 'Liu', 'age': 23, 'city': 'qing', } print("First name is: " + friend_message['first_name'] +"\n" + "last name is: " + friend_message['last_name'] + "\n" + "age is: " + str(friend_message['age']) + "\n" + "city is: " + friend_message['city'] )
[ "LemonTre@gmail.com" ]
LemonTre@gmail.com
348342fded3b42e476d18b5185cc72f37cfbd458
df9eb174049ef8fbefc6a7a6dbaee6e397a50bc8
/scripts/simulateDM_notwist.py
44af4228965755b9f52b962617274b782a3d35c7
[]
no_license
hsinhaoyu/DM_Retinotopy
4a6144bb63c7b0ecb697efa4b977406a63865de9
3dd0bfcf8d7db6cb087fd2c8ba2d1cbcce6c8bb2
refs/heads/master
2021-06-18T18:14:05.177620
2021-01-27T03:05:59
2021-01-27T03:05:59
148,410,386
0
1
null
null
null
null
UTF-8
Python
false
false
1,644
py
# simulate a scenario where rostral to V2d is area DM from helpers import full_filename from helpers import clean_outdir from vf import generate_vf_landmarks from vf import export_vf_landmarks from retinotopy import generate_V2_boundary_retinotopy_for_DM from elastic_net import initialize_map from elastic_net import optimize ##### general parameters outdir = "../results/simulateDM_notwist" clean_dir = True save_interval = 100 n_iterations = 3000 random_seed = 0 k0 = 30.0 kr = 0.003 eta0 = 0.05 ##### the visual field prototypes to for the elastioc net to cover n_prototypes = 300 magnification = -0.5 ecc0 = 0.5 ecc1 = 10.0 ##### Define The geometry of the cortical area to simulate boundary_len = 5.5 # in millimeter map_h = 30 map_w = 15 ##### model weights b1 = 0.009 # smoothness b2 = 0.1 # congruence def main(): if clean_dir: clean_outdir(outdir) x0 = generate_vf_landmarks(magnification, ecc0, ecc1, n_prototypes, vf='full', filename=full_filename('vf', outdir)) b0 = generate_V2_boundary_retinotopy_for_DM(boundary_len, map_h, filename=full_filename('boundary', outdir)) y = initialize_map(map_h, map_w, x0, filename=full_filename('init', outdir), random_seed = random_seed) optimize(x0, b0, b1, b2, map_h, map_w, y, k0 = k0, kr = kr, eta0 = eta0, outdir = outdir, save_interval = save_interval, n = n_iterations) if __name__ == "__main__": main()
[ "hsinhaohh.yu@gmail.com" ]
hsinhaohh.yu@gmail.com
37548b9190916f8651fd219d2bc13a7f83d6beb9
7851e2b17b3d68d78bd2f51d5d43c56f08b010df
/collect_id/migrations/0002_auto_20160603_0333.py
be4029c8ecead9554779bf166bc6f93a9d79dfd6
[]
no_license
doldre/scuacm_info
94bccc6815070044d34fb3c23c268841e690ac9f
51e0db56e7b0a8e6f9d7a902b3a5bd117b9cf372
refs/heads/master
2021-01-20T20:14:52.726780
2016-06-03T13:20:22
2016-06-03T13:20:22
60,317,912
1
1
null
2016-06-03T08:43:40
2016-06-03T04:18:13
Python
UTF-8
Python
false
false
454
py
# -*- coding: utf-8 -*- # Generated by Django 1.9.6 on 2016-06-03 03:33 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('collect_id', '0001_initial'), ] operations = [ migrations.AlterField( model_name='info', name='stu_id', field=models.CharField(max_length=200, unique=True), ), ]
[ "luoxinchen96@gmail.com" ]
luoxinchen96@gmail.com
48250d827da64d9104c9688d4b14d7d2e91a5d25
49b988e3ccc51b779fdf312446e37066b74cdc80
/0x0F-python-object_relational_mapping/4-cities_by_state.py
d2e113b9f5eb540d77808ced283d3ec2fa9aa2fc
[]
no_license
amartinezre05/holbertonschool-higher_level_programming
cf4eb383eb0bee60853528116d5f7796ae167900
fc6916a9a54d72f53c160e23f471f57e7bff660c
refs/heads/master
2020-12-03T07:44:25.885607
2020-05-15T02:35:01
2020-05-15T02:35:01
207,410,641
0
0
null
null
null
null
UTF-8
Python
false
false
507
py
#!/usr/bin/python3 """ lists all cities with a name """ from sys import argv import MySQLdb if __name__ == "__main__": db = MySQLdb.connect(user=argv[1], passwd=argv[2], db=argv[3]) cur = db.cursor() sql_query = "SELECT cities.id, cities.name, states.name\ FROM cities JOIN states ON cities.state_id = states.id\ ORDER BY cities.id" cur.execute(sql_query) states = cur.fetchall() for row in states: print(row) cur.close() db.close()
[ "almartinezre05@gmail.com" ]
almartinezre05@gmail.com
ada54b21eb805ba13403e644e467913924e72667
d56828f1f7ae8fbb1fc2e79f84c82c4be1d13651
/google/cloud/datacatalog_v1/types/schema.py
4a51a1226512ae2416ba971f949dedc02bb6bb30
[ "Apache-2.0" ]
permissive
isabella232/python-datacatalog
940d7664d55ae01524f7fe89f8a295e9190ec23c
d16420640ec97c17e4c63516b8375b41df82de9c
refs/heads/master
2022-12-19T23:03:49.561389
2020-10-16T19:58:42
2020-10-16T19:58:42
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,287
py
# -*- coding: utf-8 -*- # Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import proto # type: ignore __protobuf__ = proto.module( package="google.cloud.datacatalog.v1", manifest={"Schema", "ColumnSchema",}, ) class Schema(proto.Message): r"""Represents a schema (e.g. BigQuery, GoogleSQL, Avro schema). Attributes: columns (Sequence[~.schema.ColumnSchema]): Required. Schema of columns. A maximum of 10,000 columns and sub-columns can be specified. """ columns = proto.RepeatedField(proto.MESSAGE, number=2, message="ColumnSchema",) class ColumnSchema(proto.Message): r"""Representation of a column within a schema. Columns could be nested inside other columns. Attributes: column (str): Required. Name of the column. type (str): Required. Type of the column. description (str): Optional. Description of the column. Default value is an empty string. mode (str): Optional. A column's mode indicates whether the values in this column are required, nullable, etc. Only ``NULLABLE``, ``REQUIRED`` and ``REPEATED`` are supported. Default mode is ``NULLABLE``. subcolumns (Sequence[~.schema.ColumnSchema]): Optional. Schema of sub-columns. A column can have zero or more sub-columns. """ column = proto.Field(proto.STRING, number=6) type = proto.Field(proto.STRING, number=1) description = proto.Field(proto.STRING, number=2) mode = proto.Field(proto.STRING, number=3) subcolumns = proto.RepeatedField(proto.MESSAGE, number=7, message="ColumnSchema",) __all__ = tuple(sorted(__protobuf__.manifest))
[ "noreply@github.com" ]
isabella232.noreply@github.com
adb50d0161758a99474474f017143b99e885101d
dd8302ce73df23a3b764870dc22ff9641b42e9a5
/week 9/Итоговый результат.py
4541f6325661cf87898ca735a11744699a39c1d5
[]
no_license
automationmaki/Python-tasks
ca94b65a515d20b184529f25b5584b668a876227
6ab27effb8604cffb024f76b4b812b70cada0c3e
refs/heads/master
2020-06-08T23:52:57.288445
2019-06-23T09:33:00
2019-06-23T09:33:00
193,329,764
1
0
null
null
null
null
UTF-8
Python
false
false
2,323
py
from sys import stdin from copy import deepcopy class MatrixError(BaseException): def __init__(self, Matrix, other): self.matrix1 = Matrix self.matrix2 = other class Matrix: def __init__(self, lists): self.lists = deepcopy(lists) def __str__(self): strRep = "" amount = 0 for lists in self.lists: if amount != 0: strRep += "\n" new_str = "\t".join(str(elem) for elem in lists) strRep += new_str amount += 1 return strRep def size(self): return len(self.lists), len(self.lists[0]) def __add__(self, other): if len(self.lists) == len(other.lists): lenght = len(self.lists[0]) for row in self.lists: if len(row) != lenght: raise MatrixError(self, other) for row2 in other.lists: if len(row2) != lenght: raise MatrixError(self, other) result = [] numbers = [] for i in range(len(self.lists)): for j in range(len(self.lists[0])): summa = other.lists[i][j] + self.lists[i][j] numbers.append(summa) if len(numbers) == len(self.lists[0]): result.append(numbers) numbers = [] return Matrix(result) else: raise MatrixError(self, other) def __mul__(self, alpha): if isinstance(alpha, int) or isinstance(alpha, float): result = [] numbers = [] for i in range(len(self.lists)): for j in range(len(self.lists[0])): summa = self.lists[i][j] * alpha numbers.append(summa) if len(numbers) == len(self.lists[0]): result.append(numbers) numbers = [] return Matrix(result) def transpose(self): t_matrix = list(zip(*self.lists)) self.lists = t_matrix return Matrix(t_matrix) def transposed(self): t_matrix = list(zip(*self.lists)) return Matrix(t_matrix) __rmul__ = __mul__ exec(stdin.read())
[ "ivanryshov@mail.ru" ]
ivanryshov@mail.ru
24b9d814fa89590e73afbb3170a3aa86f7af9c93
6b1aaded6a6d7ad8133eb93f5570d087b9ecefc0
/lintcode405.py
bf33aa1a99a4ba748166649620a4bf9c2f3f2a0a
[]
no_license
huangyingw/Leetcode-Python
53a772e1ecf298c829c0f058faa54c420420b002
9513e215d40145a5f2f40095b459693c79c4b560
refs/heads/master
2021-07-16T10:10:02.457765
2020-07-01T05:35:21
2020-07-01T05:35:21
192,150,219
1
0
null
null
null
null
UTF-8
Python
false
false
711
py
class Solution: """ @param: matrix: an integer matrix @return: the coordinate of the left-up and right-down number """ def submatrixSum(self, matrix): if not matrix or not matrix[0]: return None m, n = len(matrix), len(matrix[0]) for top in range(m): row = [0] * n for bottom in range(top, m): prefix_sum = 0 d = {0: -1} for j in range(n): row[j] += matrix[bottom][j] prefix_sum += row[j] if prefix_sum in d: return [[top, d[prefix_sum]+1], [bottom, j]] d[prefix_sum] = j return None
[ "I510801@e12398.b.akamaiedge.net" ]
I510801@e12398.b.akamaiedge.net
f9367673e466d5c6f52ecafa0db4e965b49893b3
b172bed8f154a20f891c1aa3a53146dfc163599c
/__init__.py
1f41031af6d73570e261f461900f72600b4e41b5
[]
no_license
rocketgithub/importaciones
e9ed37c5c3bf1c9130ac7e4f4e09fce51decb016
79b72dd68e5f5e8f929402a51195963b3f6fc054
refs/heads/master
2023-05-03T18:09:39.363647
2019-04-11T17:53:06
2019-04-11T17:53:06
70,007,828
0
2
null
2019-04-11T17:54:34
2016-10-04T21:27:24
Python
UTF-8
Python
false
false
164
py
# -*- encoding: utf-8 -*- import purchase import stock import polizas import catalogos import gastos import reportes #import res_company #import product
[ "noreply@github.com" ]
rocketgithub.noreply@github.com
bcd095c44302791aacf83433056e56a9dfd98367
7162fd9b5bb32f0c9927b145f9f3bf328e455dd7
/venv/Scripts/futurize-script.py
50f400c08098befab498c551f6503f4d8201c3b3
[]
no_license
TheyCallMeRobinson/min2win
83abd8838f54ad50837ef4a249c24ac081fe4e4f
e35002ccdef679381b6db5bf1dbdd2539ed7308f
refs/heads/main
2023-05-02T21:13:41.136971
2021-05-15T05:50:42
2021-05-15T05:50:42
367,549,250
0
0
null
null
null
null
UTF-8
Python
false
false
995
py
#!d:\programms\github\min2win\venv\scripts\python.exe # EASY-INSTALL-ENTRY-SCRIPT: 'future==0.18.2','console_scripts','futurize' import re import sys # for compatibility with easy_install; see #2198 __requires__ = 'future==0.18.2' try: from importlib.metadata import distribution except ImportError: try: from importlib_metadata import distribution except ImportError: from pkg_resources import load_entry_point def importlib_load_entry_point(spec, group, name): dist_name, _, _ = spec.partition('==') matches = ( entry_point for entry_point in distribution(dist_name).entry_points if entry_point.group == group and entry_point.name == name ) return next(matches).load() globals().setdefault('load_entry_point', importlib_load_entry_point) if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(load_entry_point('future==0.18.2', 'console_scripts', 'futurize')())
[ "PaulRobinson834@users.noreply.github.com" ]
PaulRobinson834@users.noreply.github.com
1bb44406c53ccd8bd2704177ce2a869db9d18486
f2e58da412b0fcd128efafa7a1a520ff78b7aa18
/app/main/views.py
9d8783025b15701132b3422175851e9f881930eb
[]
no_license
Can2Nya/Daily
d7e1053456cf0d93a428df78e67dccd07ff4fe07
d7dffc19237d1ec8b2595aadf642d08ee711487f
refs/heads/master
2021-03-27T20:19:57.539020
2017-07-22T12:13:13
2017-07-22T12:13:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,498
py
# -*- coding: utf-8 -*- from math import ceil from flask import request, current_app, jsonify, render_template, send_file, url_for from . import main from .. import client from ..models import Douban, Guoke, Zhihu @main.route('/',methods=['GET','POST']) def index(): return render_template("index.html") @main.route('/query',methods=['GET','POST']) def query(): keywords = request.args.get('keywords') return render_template('search.html',keywords=keywords) @main.route('/api/douban/article',methods=['GET']) def douban(): page = request.args.get('page',1,type=int) pagination = Douban.objects.paginate(page=page,per_page=current_app.config['PER_PAGE']) return jsonify({ 'article_resource':[ i.to_json() for i in pagination.items], 'has_next': pagination.has_next, 'pages':pagination.pages }) @main.route('/api/guoke/article',methods=['GET']) def guoke(): page = request.args.get('page',1,type=int) pagination = Guoke.objects.paginate(page=page,per_page=current_app.config['PER_PAGE']) return jsonify({ 'article_resource':[ i.to_json() for i in pagination.items], 'has_next': pagination.has_next, 'current_page': page, 'total_pages':pagination.pages }) @main.route('/api/zhihu/article',methods=['GET']) def zhihu(): page = request.args.get('page',1,type=int) pagination = Zhihu.objects.paginate(page=page,per_page=current_app.config['PER_PAGE']) return jsonify({ 'article_resource':[ i.to_json() for i in pagination.items], 'has_next': pagination.has_next, 'current_page': page, 'total_pages':pagination.pages }) @main.route('/api/douban/search',methods=['GET']) def douban_search(): page = request.args.get('page', 1,type=int) query_words = request.args.get('query','') res = client.search( index="douban", body={ "query": { "multi_match": { "query": query_words, "fields": ["source_from", "title", "content"] } }, "from": (page - 1) * current_app.config['PER_PAGE'], "size": current_app.config['PER_PAGE'], } ) result = [] total = res['hits']['total'] for hit in res['hits']['hits']: result.append(hit["_source"]) return jsonify({ 'article_resource': result, 'has_next': page * current_app.config['PER_PAGE'] < total, 'current_page': page, 'total_pages':int(ceil(total/float(current_app.config['PER_PAGE']))) }) @main.route('/api/guoke/search',methods=['GET']) def guoke_search(): page = request.args.get('page', 1,type=int) query_words = request.args.get('query','') res = client.search( index="guoke", body={ "query": { "multi_match": { "query": query_words, "fields": ["source_from", "title", "content"] } }, "from": (page - 1) * current_app.config['PER_PAGE'], "size": current_app.config['PER_PAGE'], } ) result = [] total = res['hits']['total'] for hit in res['hits']['hits']: result.append(hit["_source"]) return jsonify({ 'article_resource': result, 'has_next': page * current_app.config['PER_PAGE'] < total, 'current_page': page, 'total_pages':int(ceil(total/float(current_app.config['PER_PAGE']))) }) @main.route('/api/zhihu/search',methods=['GET']) def zhihu_search(): page = request.args.get('page', 1,type=int) query_words = request.args.get('query','') res = client.search( index="zhihu", body={ "query": { "multi_match": { "query": query_words, "fields": ["source_from", "title", "content"] } }, "from": (page - 1) * current_app.config['PER_PAGE'], "size": current_app.config['PER_PAGE'], } ) result = [] total = res['hits']['total'] for hit in res['hits']['hits']: result.append(hit["_source"]) return jsonify({ 'article_resource': result, 'has_next': page * current_app.config['PER_PAGE'] < total, 'current_page': page, 'total_pages':int(ceil(total/float(current_app.config['PER_PAGE']))) }) @main.route('/api/all/search',methods=['GET']) def all_search(): page = request.args.get('page', 1,type=int) query_words = request.args.get('query','') res = client.search( body={ "query": { "multi_match": { "query": query_words, "fields": ["source_from", "title", "content"] } }, "from": (page - 1) * current_app.config['PER_PAGE'], "size": current_app.config['PER_PAGE'], } ) result = [] total = res['hits']['total'] for hit in res['hits']['hits']: result.append(hit["_source"]) return jsonify({ 'article_resource': result, 'has_next': page * current_app.config['PER_PAGE'] < total, 'current_page': page, 'total_pages':int(ceil(total/float(current_app.config['PER_PAGE']))) })
[ "a1023122541@qq.com" ]
a1023122541@qq.com
9205d9f42d0e132fcfe303fdeddfecd6b4964701
7083cddadf54f8b4917c400f4f4fb1f12fcaffc7
/machine.py
c7cdca1bf77ac36b0fdf0653768e4b59f4256495
[ "MIT" ]
permissive
ahmadabdulnasir/FaceAttendance
a2bbb60d7152b585f716d51fdab93d255a447ebd
01c72bf66c8419336b089712aefac477848f1f0a
refs/heads/master
2022-07-28T10:53:50.124503
2019-07-12T20:14:07
2019-07-12T20:14:07
192,237,211
0
0
MIT
2022-06-21T22:10:29
2019-06-16T21:10:20
Python
UTF-8
Python
false
false
300
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ __author__ = 'Ahmad Abdulnasir Shu'aib <me@ahmadabdulnasir.com.ng>' __homepage__ = https://ahmadabdulnasir.com.ng __copyright__ = 'Copyright (c) 2019, salafi' __version__ = "0.01t" """ def boot(): pass if __name__ == "__main__": boot()
[ "ahmadabdulnasir9@gmail.com" ]
ahmadabdulnasir9@gmail.com
72ff8c3550a9d80982b6ab69f568c80f8e65b8c8
df8c19c952f02e3527c0e06c1d74ed578ca0684b
/account/tasks.py
73d9501a1106ab6067bb90300b4c9dafed75e5bc
[]
no_license
knkemree/msrugs_backend
ac8c703fb691c9a796028cb2c38abaf8ed98c98c
850026b2884e7618404ecfa030beccec93bb4596
refs/heads/master
2023-04-03T04:31:13.557762
2021-04-05T17:26:34
2021-04-05T17:26:34
354,910,411
0
0
null
null
null
null
UTF-8
Python
false
false
494
py
from celery import shared_task from django.core.mail import send_mail, mail_admins from django.template import loader from django.conf import settings from celery.utils.log import get_task_logger logger = get_task_logger(__name__) @shared_task def info_admins(email): subject = "New Customer Registered" message= "New customer" mail_sent = mail_admins(subject, message, html_message="A new customer registered! Customer's email address is "+str(email)) return mail_sent
[ "konakziyaemre@gmail.com" ]
konakziyaemre@gmail.com
891c9f88a99a505b44337aca6088ddc9309129b4
4686c91e446410fc0da1ae2433f931a26dfd7e52
/python_basic_test_v0.0/software_develop_book_test/CH7/calculater.py
734d8760df1e479866060141a9e9590df7144666
[]
no_license
JuSuIn/jsi_develop
1c834f9d8a4476b2b1c1868a01d2da44ccb9d3a0
15ab28d6c5d0f55439af31fec4d76c7bcb4f4121
refs/heads/master
2020-04-08T04:56:03.389584
2019-09-01T11:36:26
2019-09-01T11:36:26
159,038,346
0
0
null
null
null
null
UTF-8
Python
false
false
159
py
#%%writefile calculater.py # -*- coding : utf-8 -*- def add(l,r): return l + r def mul(l,r): return l * r def div(l,r): return l / r
[ "jusuin5876@gmail.com" ]
jusuin5876@gmail.com
6ae4d90917b76209da685d3f1195dec591493d97
d5b409e73e3d907afd9b2a02ed03e052fd07ddd8
/website_parsing.py
4f7141895816bed681d3d68a949690381cf36bfa
[]
no_license
Jonscott92/CNS210
5f1f7063e7b13e3934ff02ac7cbdb9520821d201
4a3e77423d1a6f4910a31452863416ba1e76da77
refs/heads/master
2021-04-19T04:22:06.644885
2020-05-02T18:33:45
2020-05-02T18:33:45
249,579,845
1
0
null
2020-04-17T22:14:32
2020-03-24T01:03:49
Python
UTF-8
Python
false
false
837
py
#!/usr/bin/python3 from bs4 import BeautifulSoup import requests import urllib.request url = 'https://www.python.org/downloads/' page = requests.get(url) # parse python.org/downloads for 2.7 version released on April 6, 2013 soup = BeautifulSoup(page.content, 'html.parser') #print(soup.prettify()) all_versions = soup.select('.download-list-widget .list-row-container li') for version in all_versions: for x in version.select(".release-date"): if x.get_text() == "April 6, 2013": print(version.select_one('.release-number').get_text().split(" ")[1]) versions = input("which version of python would you like: ") selected_version ='https://www.python.org/ftp/python/'+versions+'/Python-'+versions+'.tar.xz' my_name_version = "JonScott-Python-version" urllib.request.urlretrieve(selected_version, my_name_version)
[ "noreply@github.com" ]
Jonscott92.noreply@github.com
a8d35d6865f273efb2f367a0bd0e0a003042606f
68a852e587ee03e1e73d468b4ebb988d961f5ae9
/covenants.py
d3ae0e07044353cbfeab2e48b040f981f9a5c0ce
[ "MIT" ]
permissive
spromicky/covenants_bot
7b60088b42c7f5b3502e374807c9dce68020bc0f
986edd2db6e5db3e479cfb675ba67ca2c8e945dd
refs/heads/master
2023-05-10T02:38:46.021499
2021-06-05T00:03:47
2021-06-05T00:03:47
373,978,922
0
0
null
null
null
null
UTF-8
Python
false
false
1,892
py
import os import random from quotes import Quotes from datetime import date from terminal_colors import bcolors import discord from discord.ext import commands from dotenv import load_dotenv load_dotenv() TOKEN = os.getenv('DISCORD_TOKEN') cache = {} quotes = Quotes() bot = commands.Bot(command_prefix='!') @bot.command(name='craid', help='Bring all intelligence of ML and choose the best covenant in raid') async def raid(ctx): await ctx.send(choose_quote(ctx)) @bot.command(name='ckeys', help='Bring all intelligence of ML and choose the best covenant in m+') async def keys(ctx): await ctx.send(choose_quote(ctx)) @bot.command(name='rl', help='Refresh quotes') async def keys(ctx): quotes.load_quotes() def build_cache_key(ctx): today = date.today() return f'{today}{ctx.author.name}{ctx.command}' def choose_quote(ctx): cacheKey = build_cache_key(ctx) response = '' print(f"{bcolors.WARNING}--------------------------{bcolors.ENDC}") print(f"{bcolors.WARNING}{bcolors.BOLD}{ctx.author.name} - {bcolors.OKCYAN}{ctx.command}{bcolors.ENDC}") if cacheKey in cache: print(f"Used cache value:\n{bcolors.OKGREEN}{cacheKey}:{bcolors.ENDC} {cache[cacheKey]}") return cache[cacheKey] else: general_quotes = [] personal_quotes = [] if ctx.author.name in quotes.personalized_quotes: personal_quotes = quotes.personalized_quotes[ctx.author.name] if ctx.command.name == 'craid': general_quotes = quotes.raid_quotes else: general_quotes = quotes.keys_quotes total_quotes = general_quotes + personal_quotes response = random.choice(general_quotes + personal_quotes) cache[cacheKey] = response print(f"Added to cache: \n{bcolors.WARNING}{cacheKey}:{bcolors.ENDC} {response}") return response bot.run(TOKEN)
[ "spromicky@gmail.com" ]
spromicky@gmail.com
5232742e7ce8908fe40f6554bc4648d7ab5f4b13
d464345994fbe197f7a55e0d3866b628b3839511
/config_tmpl.py
660a2859a4d2ffca65492fae93f56ec289d4e9ea
[]
no_license
DCHHV/HHV_admin_scripts
b9cc9b38e213d5f2c9e1def781fecdbf5f7d138d
1e72fdf6f2985a49bdfe69fa597d698899156b48
refs/heads/master
2023-04-14T17:46:16.349190
2023-03-18T23:56:19
2023-03-18T23:56:19
162,051,971
1
0
null
2022-07-08T20:32:46
2018-12-16T23:54:27
Python
UTF-8
Python
false
false
1,236
py
Organizer=""; # Name of the event/group organizer, used to convey the name of the person to talk to on-site Organizer_phone=""; # Phone number of the above organizer SMTP_url=""; # SMTP server, used in all of the send scripts SMTP_port=587; # Testing done with TLS, SSL connection may not work without modifications SMTP_user=""; # SMTP username on the server. # Password is prompted for during script execution Email_from=""; # When sending emails, the "From" in the header gets set to this Email_subject=""; # When sending emails, the "Subject" is set to this with further text appended from each script DC_num=""; # DEF CON number, used to make things cleaner and specific year to year DC_days=""; # DEF CON event days, used to note the days of the con DC_floormapurl=""; # URL pointing to the DEF CON floormap, speakers should know where they are going Badge_meet=""; # Meeting time and location to give speakers their badges Response_deadline=""; # Deadline for CFP applicants to respond to confirm their presentation Schedule_deadline=""; # Deadline for CFP applicants to respond to lock in their presentation schedule Radiosilent_deadline=""; # Point in time where the Organizer will not be available via email
[ "Kris@KBEmbedded.com" ]
Kris@KBEmbedded.com
79077daf4f3432dcd7777ec73000e9bb77c6bca0
5fdd62e8909bec75632895cbddf626905b44f486
/grad_school_projects/Particle_Filter/particle_eitan.py
0e55e6c1fb9e7df3057097037f6738437eae8f57
[]
no_license
jimitgandhi66/My_projects
2839c7a92a7a4f00e4ef00b83e6b696469ad7bdf
446a4ae648cb32424fda2d08a4c7a3828ab33f59
refs/heads/master
2021-07-19T03:28:00.980328
2021-02-19T05:10:38
2021-02-19T05:10:38
55,872,684
0
0
null
null
null
null
UTF-8
Python
false
false
6,450
py
#!/usr/bin/python import numpy as np from multiprocessing import Pool from scipy.spatial.distance import cdist from scipy.stats import norm import numpy.random from numpy.random import multinomial import matplotlib.pyplot as plt import random import time import h5py class particle: def __init__(self): self.map = np.loadtxt('wean.dat', delimiter=' ') self.occ = np.loadtxt('occu.dat', delimiter=' ') self.unocc = np.loadtxt('unoccu.dat', delimiter=' ') self.unocc_dict = {tuple(el):1 for el in self.unocc} self.unocc_corr = np.loadtxt('unoccu_corr.dat', delimiter=' ') #self.X_t = np.loadtxt('part_init.dat', delimiter=' ') self.num_p = 1e4 self.sense = np.loadtxt('sense4.dat', delimiter=' ') self.isodom = np.loadtxt('is_odom4.dat', delimiter=' ') self.mindist = np.loadtxt('min_d.dat', delimiter=' ') self.a = np.array([.01,.01,0.01,0.01]) self.c_lim = 10 self.lsr_max = 1000 self.zmax = 0.25 self.zrand = 0.25 self.sig_h = 5 self.zhit = .75 self.q = 1 self.srt = 10 self.end = 170 self.step = 10 plt.imshow(self.map) plt.ion() self.scat = plt.quiver(0,0,1,0) def motion_update(self, X_t, O1, O2): O_d = O2 - O1 t = np.sqrt(np.sum(np.power(O_d[0:2],2))) r1 = np.arctan2(O_d[1], O_d[0]) - O1[2] r2 = -r1 + O_d[2] sig_t = np.finfo(float).eps + self.a[2] * np.absolute(t) sig_r1 = np.finfo(float).eps + self.a[0] * np.absolute(r1) sig_r2 = np.finfo(float).eps + self.a[1] * np.absolute(r2) # sig_t = np.finfo(float).eps + np.sqrt(self.a[2] * np.absolute(t) + self.a[3] * np.absolute(r1+r2)) # sig_r1 = np.finfo(float).eps + np.sqrt(self.a[0] * np.absolute(r1) + self.a[1] * np.absolute(t)) # sig_r2 = np.finfo(float).eps + np.sqrt(self.a[0] * np.absolute(r2) + self.a[1] * np.absolute(t)) # print('heeee') # print(sig_r1) # print(sig_r2) h_t = np.reshape(t + np.random.normal(0,sig_t,len(X_t)), (len(X_t),1)) h_r1 = r1 + np.random.normal(0,sig_r1,len(X_t)) h_r2 = r2 + np.random.normal(0,sig_r2,len(X_t)) th = np.reshape(X_t[:,2] + h_r1, (len(X_t),1)) pos = X_t[:,:2] + np.concatenate((np.cos(th), np.sin(th)), axis=1) * h_t ang = np.reshape(X_t[:,2]+h_r1+h_r2, (len(X_t),1)) ang = (ang + (- 2*np.pi)*(ang > np.pi) + (2*np.pi)*(ang < -np.pi)) X_upd = np.concatenate((pos,ang), axis=1) map_c = np.ceil(pos/10).astype(int) count = 0; for i in range(len(X_upd)): if(self.unocc_dict.has_key(tuple(map_c[i]))): X_upd[count] = X_upd[i] count = count+1 # print(count) return X_upd[:count,:] def get_lsr_poses(self, X_upd, L): th = np.reshape(X_upd[:,2], (len(X_upd),1)) t = np.sqrt(np.sum(np.power(L[3:5] - L[0:2],2))) return (X_upd[:,:2] + np.concatenate((np.cos(th), np.sin(th)), axis=1) * t) def get_wt(self, x_upd, lsr_pos, L, angs, inds): th = np.reshape(x_upd[2] + angs[inds], (len(inds),1)) t = np.reshape(L[6+inds], (len(inds),1)) meas_pos = lsr_pos + np.concatenate((np.cos(th), np.sin(th)), axis=1) * t q = self.q for i in range(len(meas_pos)): if(t[i] > self.lsr_max): continue min_c = np.floor(meas_pos[i]/10).astype(int) if(min_c[0] >= len(self.mindist) or min_c[1] >= len(self.mindist[0]) or min_c[0] < 0 or min_c[1] > 0): q = q*self.zrand/self.lsr_max continue d = self.mindist[min_c[0], min_c[1]] q = q*(self.zhit*norm.pdf(d, 0, self.sig_h) + self.zrand/self.lsr_max) return q def get_wt_vect(self, X_upd, i, angs, inds): L = self.sense[i] lsr_poses = self.get_lsr_poses(X_upd, L) wt_vect = np.empty([len(X_upd),]) wt_vect.fill(self.q) for i in inds.tolist(): th = np.reshape(X_upd[:,2] + angs[i], (len(X_upd),1)) t = L[6+i] meas_pos = lsr_poses + np.concatenate((np.cos(th), np.sin(th)), axis=1) * t if(t > self.lsr_max): continue min_c = np.floor(meas_pos/10).astype(int) for j in range(len(meas_pos)): if(min_c[j,0] >= len(self.mindist) or min_c[j,1] >= len(self.mindist[0]) or min_c[j,0] < 0 or min_c[j,1] < 0): wt_vect[j] = wt_vect[j]*self.zrand/self.lsr_max continue d = self.mindist[min_c[j,0], min_c[j,1]] x = d/self.sig_h**2 wt_vect[j] = wt_vect[j]* (self.zhit/(1+x) + self.zrand/self.lsr_max) # print 'wt_vect[j]: ' + str(wt_vect[j]) # wt_vect[j] = wt_vect[j]*(self.zhit**2*(1-x+(x**2)/2) + self.zrand/self.lsr_max) # wt_vect[j] = wt_vect[j]*(self.zhit*norm.pdf(d, 0, self.sig_h) + self.zrand/self.lsr_max) return wt_vect def get_p_upd(self, wt_vect, X_upd): norm_wt_vect = wt_vect/np.amax(wt_vect) # print np.histogram(norm_wt_vect) wt_vect = wt_vect/np.sum(wt_vect) dist = np.reshape(np.random.multinomial(self.num_p,wt_vect,1), (len(wt_vect),)) X_new = np.empty([0,3]) for p in range(len(dist)): X_new = np.concatenate((X_new,np.tile(X_upd[p],(dist[p],1)))) return X_new def initialize(self, num_particles): ind = np.random.randint(self.unocc.shape[0], size=num_particles) particles = self.unocc[ind,:] # convert r,c to x,y particles = (particles - 1) * 10 + 5 theta = np.random.rand(num_particles) * 2*np.pi particles = np.insert(particles,[2],np.transpose(theta[np.newaxis]),axis=1) return particles def visualize(self, particles): self.scat.remove() y = np.floor(particles[:,0] / 10) x = np.floor(particles[:,1] / 10) v = -np.cos(particles[:,2]) u = np.sin(particles[:,2]) self.scat = plt.quiver(x,y,u,v) plt.pause(0.00001) def main(self): f = h5py.File('output4.h5', 'w') X_t = self.initialize(self.num_p) angs = np.arange(-np.pi/2, np.pi/2 + np.pi/180, np.pi/180) inds = np.arange(self.srt-1,self.end,self.step) if(not self.isodom[0]): wt_vect = self.get_wt_vect(X_t, 0, angs, inds) X_t = self.get_p_upd(wt_vect, X_t) # print('hi') t1 = t2 = t3 = t4 = t5 = 0 for i in range(1,len(self.sense)): O1 = self.sense[i-1] O2 = self.sense[i] t1 = time.time() X_upd = self.motion_update(X_t, O1, O2) t2 = time.time() t3 = t4 = t5 = 0 if(not self.isodom[i]): t3 = time.time() wt_vect = self.get_wt_vect(X_upd, i, angs, inds) t4 = time.time() X_upd = self.get_p_upd(wt_vect, X_upd) t5 = time.time() X_t = X_upd # print 'Motion Update Time: ' + str(t2 - t1) # print 'Get Weight Time: ' + str(t4 - t3) # print 'Get Update: ' + str(t5 - t4) f.create_dataset(str(i), data=X_t) # if i % 10 == 0: # # print X_t # self.visualize(X_t) print(i) f.close() return X_t if __name__ == "__main__": p = particle() p.main()
[ "jimitgandhi66@gmail.com" ]
jimitgandhi66@gmail.com
4183e285a712ddf25405d8c0696ee9d1f6405b23
bd5bac591657754c45c0449c89bbad069f0f0c1a
/24.Remove spaces from dictionary keys.py
09451c629aaf9d1586c6f188b5220503c129db9b
[]
no_license
AkhilReddykasu/Dictionary
8cdfbc90ef43af3519ff2864e9d3b084e1b92c4c
45a50e5a4cc03ec38ba0b502e962f85f9503f106
refs/heads/master
2022-11-17T20:01:24.249875
2020-07-17T15:46:49
2020-07-17T15:46:49
280,464,002
0
0
null
null
null
null
UTF-8
Python
false
false
302
py
"""Remove spaces from dictionary keys""" d = {'tom': 'jerry', 'mike tyson': 'boxer', 'jack pirate': 'sparrow', 'will Turner': 'Elizabeth'} print("Before removing spaces:\n", d) d = {x.replace(' ', ''): v for x, v in d.items()} print("After removing space:\n", d)
[ "noreply@github.com" ]
AkhilReddykasu.noreply@github.com
c344e931dbc0bea19cfd8ade72f0e23e73c9944c
6bf7149077f539ab599db1f717c93aca82724512
/workshop/fig_games/project/game.py
28aac4f8ed638b7cc05a55b9da86ae835c56af25
[]
no_license
KalinHar/OOP-Python-SoftUni
8b53e8b734b364878c5372525c4249fdd32f0899
9787eea7ab5101e887ed4aaeb0a8b3b80efcfdd7
refs/heads/master
2023-07-09T08:15:59.765422
2021-08-16T06:01:08
2021-08-16T06:01:19
380,813,294
0
1
null
null
null
null
UTF-8
Python
false
false
2,577
py
from workshop.fig_games.project.suitcase import Suitcase from workshop.fig_games.project.battle.area_battle import AreaBattle from workshop.fig_games.project.battle.circumfernce_battle import CircumferenceBattle from workshop.fig_games.project.battle.relative_battle import RelativeBattle from workshop.fig_games.project.figure.triangle import Triangle from workshop.fig_games.project.figure.circle import Circle from workshop.fig_games.project.figure.square import Square from workshop.fig_games.project.figure.rectangle import Rectangle class Game: def __init__(self): self.figures = Suitcase() def area_battle(self, fig1, fig2): result = AreaBattle().battle(fig1, fig2) if result: return result.name return None def circumference_battle(self, fig1, fig2): result = CircumferenceBattle().battle(fig1, fig2) if result: return result.name return None def relative_battle(self, fig1, fig2): result = RelativeBattle().battle(fig1, fig2) if result: return result.name return None def total_battle(self): while len(self.figures.repository) > 1: fig1 = self.figures.repository.pop() # take first two figs fig2 = self.figures.repository.pop() # take first two figs result = [self.area_battle(fig1, fig2)] result.append(self.circumference_battle(fig1, fig2)) result = [fig for fig in result if fig] # list with only wins results result = set(result) result = list(result) if len(result) == 1: # check for winner self.figures.add([f for f in [fig1, fig2] if f.name == result[0]][0]) # return the winner back continue result = self.relative_battle(fig1, fig2) self.figures.add([f for f in (fig1, fig2) if f.name == result][0]) # return the winner back return self.figures.repository[0] def __str__(self): return f"The winner is:\n{str(self.total_battle())}" tri1 = Triangle("tri1", 9, 4, 6.5, 4.5) tri2 = Triangle("tri2", 5, 2.4, 3, 4) cir1 = Circle("cir1", 3) rec1 = Rectangle("rec1", 1, 7) squ1 = Square("squ1", 6) g = Game() print(g.figures.add(tri1)) print(g.figures.add(tri2)) print(g.figures.add(cir1)) print(g.figures.add(rec1)) print(g.figures.add(squ1)) print(g.area_battle(cir1, tri1)) print(g.circumference_battle(cir1, tri1)) print(g.relative_battle(cir1, tri1)) print(g.figures.remove("squ1")) print(g.figures) print("-------------") print(g)
[ "kalix@abv.bg" ]
kalix@abv.bg
7f853d13a99364d388ef59396d477dcfa85ad1be
995edd150d0025bbecc85a945c16652a77391375
/stringExample.py
d882ebe9a914e440c0dbfb78815bbb27760f9f3a
[]
no_license
joeyzywang/pythonExamples
1210de858dd022ca3801d601f5cc798d6f173b4e
165e120f903d4c34004cdd29eeea4e2a62bef43c
refs/heads/master
2021-01-10T09:58:13.513782
2016-01-20T06:16:15
2016-01-20T06:16:15
50,002,116
0
0
null
null
null
null
UTF-8
Python
false
false
281
py
#! /usr/bin/python # -*- coding: utf-8 -*- word="abcdefg" a=word[2] print("a is " + a) b=word[1:3] print("b is " + b) c=word[:2] print("c is " + c) d=word[0:] print("d is " + d) l=len(word) print("Length of the string : " + str(l)) ''' 知识点 *字符串就是列表 '''
[ "joeywang@Joeys-iMac.local" ]
joeywang@Joeys-iMac.local
56dcdc36f721b9369ff7075c0fee428604fd53df
0c63ccb99eb2ecb18dd9c35df07db75ada2ebb67
/health/data.py
64b4f373e3fd44d22084c211ec794f7f69f5e60e
[]
no_license
arsil-z/Medilab
01451b5621c41b72517d910ee6c3d9245d05df76
dab8c31b40d655a2c1e64e7ecb2e12fe9902aaa3
refs/heads/master
2023-08-17T16:19:32.200584
2020-07-26T12:45:03
2020-07-26T12:45:03
282,442,781
0
0
null
2021-09-23T04:55:09
2020-07-25T12:48:24
CSS
UTF-8
Python
false
false
591,889
py
import null as null symptoms_list = {'s_1558': 'Abdominal guarding', 's_299': 'Abdominal mass', 's_1293': 'Abdominal mass, after pregnancy or the removal of a molar pregnancy', 's_13': 'Abdominal pain', 's_1802': 'Abdominal pain, burning or gnawing', 's_1848': 'Abdominal pain, colicky', 's_1860': 'Abdominal pain, crampy', 's_1557': 'Abdominal pain, diffuse', 's_1387': 'Abdominal pain, epigastric', 's_1207': 'Abdominal pain, exacerbating after caffeine consumption', 's_15': 'Abdominal pain, exacerbating during coughing or movement', 's_1202': 'Abdominal pain, exacerbating during deep breath', 's_14': 'Abdominal pain, exacerbating on an empty stomach', 's_1844': 'Abdominal pain, gradual onset', 's_1852': 'Abdominal pain, lasting 2 to 7 days', 's_1853': 'Abdominal pain, lasting 8 to 14 days', 's_1840': 'Abdominal pain, lasting less than two days', 's_1842': 'Abdominal pain, lasting more than two weeks', 's_1729': 'Abdominal pain, left lower quadrant', 's_1854': 'Abdominal pain, left side', 's_1591': 'Abdominal pain, left upper quadrant', 's_1851': 'Abdominal pain, migrating to the right lower quadrant', 's_1782': 'Abdominal pain, mild', 's_1783': 'Abdominal pain, moderate', 's_1598': 'Abdominal pain, pelvic', 's_1532': 'Abdominal pain, periumbilical', 's_16': 'Abdominal pain, postprandial', 's_17': 'Abdominal pain, premenstrual', 's_1845': 'Abdominal pain, radiating to left shoulder or shoulder blade', 's_1846': 'Abdominal pain, radiating to lower or middle part of back', 's_471': 'Abdominal pain, radiating to right shoulder or shoulder blade', 's_1847': 'Abdominal pain, recurrent', 's_57': 'Abdominal pain, reduced by defecation or relieving flatulence', 's_1531': 'Abdominal pain, right lower quadrant', 's_1855': 'Abdominal pain, right side', 's_1528': 'Abdominal pain, right upper quadrant', 's_1195': 'Abdominal pain, severe', 's_1369': 'Abdominal pain, sharp and stabbing', 's_1843': 'Abdominal pain, sudden onset', 's_1929': 'Abdominal pain, unbearable', 's_1514': 'Abdominal tenderness', 's_1589': 'Abdominal tenderness, left upper quadrant', 's_1392': 'Abdominal tenderness, right upper quadrant', 's_1400': 'Abdominal tenderness, suprapubic', 's_1419': 'Abnormal foveal avascular zone', 's_328': 'Abnormal vaginal discharge', 's_598': 'Abscess', 's_1072': 'Absence of deep reflexes', 's_1502': 'Achilles tendon hyperreflexia', 's_2121': 'Acid reflux', 's_1973': 'Active wound bleeding', 's_3': 'Activity related to sex despite negative consequences', 's_1111': 'Adenoid face', 's_145': 'Agitation', 's_833': 'Agnosia', 's_884': 'Agoraphobia', 's_1012': 'Agraphia', 's_817': 'Alcohol craving', 's_588': 'Alcohol tolerance', 's_818': 'Alcohol withdrawal syndrome', 's_1019': 'Allelomimetic behavior, allomimetic behavior', 's_1272': 'Allen-Cleckley sign', 's_837': 'Alogia', 's_1728': 'Altered defecation rhythm', 's_1457': 'Amenorrhea', 's_1458': 'Amenorrhea, primary', 's_1370': 'Amenorrhea, secondary, for at least 12 months', 's_1032': 'Amusia', 's_147': 'Anemia', 's_608': 'Angular cheilitis', 's_508': 'Anhedonia', 's_1123': 'Anhidrosis', 's_669': 'Anhidrosis, face, unilateral', 's_2170': 'Anicteric presentation', 's_497': 'Anisocoria', 's_1647': 'Annular skin lesions', 's_1030': 'Anomic aphasia', 's_436': 'Anorectal pain', 's_120': 'Anxiety', 's_582': 'Anxiety attack', 's_4': 'Apathy', 's_969': 'Aphasia', 's_477': 'Aphonia', 's_1269': 'Aponeurotic reflex', 's_6': 'Appetite for salty foods', 's_1010': 'Apraxia', 's_1292': 'Arthropathy', 's_1116': 'Ascites', 's_380': 'Asymmetry of a skin mole or birthmark', 's_651': 'Ataxia', 's_1120': 'Atonic bladder', 's_1117': 'Atrophy or diminishing of both testicles', 's_1028': 'Auditory verbal agnosia', 's_857': 'Auscultative fine crackles over the thorax', 's_1316': 'Auscultative rhonchi over the thorax', 's_856': 'Auscultative wheezes over the thorax', 's_710': 'Avoiding actions, places, or people that bring back memories of trauma', 's_718': 'Avoiding eating and drinking in public', 's_719': "Avoiding eating in someone's presence", 's_717': 'Avoiding public appearances', 's_720': 'Avoiding talking to authority figures', 's_709': 'Avoiding thoughts, feelings, conversations related to traumatic experience', 's_1322': 'Axillary or inguinal freckles', 's_1023': 'Babinski sign', 's_1190': 'Back pain', 's_159': 'Back pain, exacerbated by physical exertion', 's_1206': 'Back pain, improves with rest', 's_1205': 'Back pain, lasting several hours', 's_53': 'Back pain, lumbar', 's_1339': 'Back pain, lumbar, exacerbating during the night', 's_38': 'Back pain, lumbar, radiates to back of the thigh', 's_663': 'Back pain, lumbar, radiating to the groin', 's_1189': 'Back pain, recurrent', 's_1192': 'Back pain, severe', 's_1198': 'Back pain, sudden', 's_1772': 'Back pain, thoracic', 's_2085': 'Back pain, worsens on palpation', 's_842': 'Behavioral changes, ignoring consequences and social norms', 's_348': 'Behavioral changes, personality', 's_561': 'Belching', 's_1073': 'Bilateral absence of Achilles tendon reflex', 's_1011': 'Bilateral limb apraxia', 's_1291': 'Bilateral muscle paralysis', 's_1257': 'Bing sign', 's_137': 'Binge-eating attacks', 's_769': 'Bizarre delusion', 's_71': 'Black stools', 's_435': 'Bladder not emptying completely', 's_1119': 'Bladder sphincter dysfunction', 's_152': 'Bleeding after intercourse', 's_115': 'Bleeding from anus', 's_111': 'Bleeding gums', 's_1386': 'Bleeding into muscles', 's_192': 'Blepharoptosis', 's_1934': 'Blindness', 's_1807': 'Blisters', 's_309': 'Bloating', 's_112': 'Blood in stool', 's_113': 'Blood in urine', 's_771': 'Blunted affect', 's_1835': 'Body aches', 's_1224': 'Bone deformation', 's_612': 'Bone pain', 's_2070': 'Bone pain, lasting less than a week', 's_2071': 'Bone pain, lasting longer than a week', 's_641': 'Bowel incontinence', 's_1553': 'Bowel sounds, decreased', 's_1552': 'Bowel sounds, hyperactive, high-pitched', 's_534': 'Bradycardia', 's_1480': 'Breast tenderness', 's_609': 'Breast tightness or pain', 's_1947': 'Broken bone', 's_1671': 'Broken hair', 's_1310': 'Brown nail discoloration', 's_1690': 'Brudzinski sign', 's_1960': 'Bruise after trauma', 's_1013': 'Buccofacial or orofacial apraxia', 's_1803': 'Bulla', 's_2040': 'Burn involving face, hands, feet, genitalia, or major joints', 's_1165': 'Burning skin', 's_1684': 'Burning skin, face', 's_200': 'Burning tongue', 's_1918': 'Buttocks pain', 's_1330': 'Café au lait macules', 's_1168': 'Calcification of the tympanic membrane', 's_117': 'Calf muscle spasms', 's_1720': 'Cardiac murmurs', 's_811': 'Cardiomegaly', 's_1576': 'Carotid bruit', 's_589': 'Ceasing or limiting alcohol consumption', 's_996': 'Cervical dystonia', 's_1258': 'Chaddock sign', 's_585': 'Change in color of a skin mole or birthmark', 's_346': 'Change in color of a tooth', 's_345': 'Change in handwriting', 's_584': 'Change in shape of a skin mole or birthmark', 's_1989': 'Chemical or electrical burn', 's_1091': 'Chemosis', 's_50': 'Chest pain', 's_2096': 'Chest pain, burning', 's_31': 'Chest pain, continues after rest', 's_51': 'Chest pain, diffuse', 's_35': 'Chest pain, during exertion', 's_2051': 'Chest pain, exacerbated by chest wall movement', 's_1763': 'Chest pain, exacerbated by stress', 's_2006': 'Chest pain, exacerbating when lying down', 's_30': 'Chest pain, exacerbating with deep breath or cough', 's_2019': 'Chest pain, lasting between 30 minutes and 8 hours', 's_2018': 'Chest pain, lasting less than 30 minutes', 's_2022': 'Chest pain, lasting over 8 hours', 's_1925': 'Chest pain, pressure', 's_37': 'Chest pain, radiating between shoulder blades', 's_2074': 'Chest pain, radiating to left upper limb', 's_36': 'Chest pain, radiating to neck', 's_1952': 'Chest pain, recurrent', 's_1197': 'Chest pain, severe', 's_1601': 'Chest pain, stabbing', 's_48': 'Chest pain, subsides during rest', 's_1509': 'Chest pain, substernal', 's_1200': 'Chest pain, sudden', 's_1178': 'Chest pain, worsens on palpation', 's_1580': 'Chest pain, worsens on palpation of costochondral joints', 's_1546': 'Cheyne-Stokes respiration', 's_81': 'Chills', 's_1456': 'Chorea', 's_867': 'Chvostek sign', 's_196': 'Cigarette smoking during illness', 's_1281': 'Clasp-knife spasticity', 's_734': 'Claudication in upper leg', 's_1094': 'Clearing the throat', 's_429': 'Clicking sounds in the jaw joint when opening or closing the mouth', 's_276': 'Clogged ear', 's_288': 'Close family or friends pointing out excessive drinking', 's_869': 'Club-foot', 's_610': 'Coated tonsils', 's_1184': 'Coating on tongue', 's_2108': 'Cognitive disturbances', 's_1283': 'Cogwheel muscle rigidity', 's_1926': 'Cold and clammy skin', 's_408': 'Cold feet and toes', 's_556': 'Cold hands or fingers', 's_118': 'Cold sensitivity', 's_1328': 'Color vision deficiency', 's_2109': 'Coma', 's_303': 'Compulsive behavior', 's_831': 'Confabulation', 's_1345': 'Confusion (trauma related)', 's_1212': 'Conjunctival pallor', 's_1214': 'Conjunctival pallor, sudden', 's_2034': 'Consciousness disturbances', 's_2072': 'Consciousness disturbances, acute', 's_2073': 'Consciousness disturbances, chronic', 's_181': 'Constant need for sex', 's_329': 'Constipation', 's_2162': 'Constipation, chronic', 's_2164': 'Consumption of contaminated food or drink', 's_635': 'Contentiousness', 's_1228': 'Convergent strabismus', 's_1676': 'Corn or callus', 's_1268': 'Corneal reflex weak or absent', 's_1273': "Cornell's sign", 's_102': 'Cough', 's_105': 'Cough, dry', 's_103': 'Cough, lasting less than three weeks', 's_106': 'Cough, lasting more than eight weeks', 's_1858': 'Cough, lasting three to eight weeks', 's_1985': 'Cough, nocturnal', 's_1924': 'Cough, paroxysmal', 's_104': 'Cough, productive', 's_662': 'Cough, productive in the morning', 's_670': 'Cough, productive with pink, frothy sputum', 's_526': 'Cough, productive with yellow or green sputum', 's_270': 'Creaking of joint during movement', 's_242': 'Crowding of teeth', 's_195': 'Current cigarette smoking', 's_437': 'Cyanosis', 's_1105': 'Cyanosis under the eyes', 's_553': 'Cyanosis, fingers', 's_1750': 'Cyanosis, fingers, after exposure to stress or cold', 's_1413': 'Cystoid macular edema', 's_1338': 'Damage to 2 separate areas of innervation', 's_1555': "Dance's sign", 's_1616': 'Dandruff', 's_1171': 'Darier sign', 's_611': 'Dark urine', 's_1417': 'Dark-red spots in optic disc vessels', 's_357': 'Decreased breast size', 's_208': 'Decreased hearing', 's_1484': 'Decreased hearing, progressive hearing loss', 's_1538': 'Decreased hearing, sudden hearing loss', 's_935': 'Decreased hearing, variable intensity and duration', 's_1693': 'Decreased intensity of breath sounds', 's_1395': 'Decreased intensity of breath sounds, right basilar lung zones', 's_236': 'Decreased libido', 's_661': 'Decreased motivation', 's_634': 'Decreased need for sleep', 's_535': 'Decreased pupillary light reflex', 's_697': 'Decreased skin turgor', 's_1277': 'Decreased tongue motility', 's_967': 'Decreased visual acuity', 's_97': 'Deep filling of treated tooth', 's_652': 'Deep tendon reflexes, decreased', 's_878': 'Deep tendon reflexes, increased', 's_108': 'Deepening of periodontal pockets', 's_422': 'Deepening of voice', 's_768': 'Delusion of guilt or sin', 's_774': 'Delusion of impoverishment', 's_2098': 'Delusions', 's_677': 'Delusions of grandeur', 's_680': 'Delusions of influence', 's_675': 'Delusions of persecution', 's_676': 'Delusions of reference', 's_839': 'Delusions of thought insertion, thought withdrawal, thought broadcasting', 's_1409': 'Demarcation of retinal detachment (pigmented or nonpigmented)', 's_1106': 'Dennie-Morgan fold', 's_203': 'Dental plaque', 's_169': 'Depressed mood', 's_916': 'Depressed mood, persistent', 's_514': 'Derealization', 's_241': 'Dermatological changes', 's_1761': 'Dermatological changes, aggravated by stress', 's_352': 'Dermatological changes, at the point of contact with buttons, fasteners, or cosmetics', 's_1602': 'Dermatological changes, chancre', 's_398': 'Dermatological changes, entire skin', 's_1692': 'Dermatological changes, exacerbated by alcohol consumption', 's_483': 'Dermatological changes, eyelid', 's_1923': 'Dermatological changes, feet', 's_2110': 'Dermatological changes, female genital area', 's_245': 'Dermatological changes, forming a crust', 's_350': 'Dermatological changes, forming a line', 's_1982': 'Dermatological changes, hands', 's_1680': 'Dermatological changes, hyperpigmentation of the skin', 's_390': 'Dermatological changes, localization near sebaceous glands', 's_694': 'Dermatological changes, located in the mouth', 's_1808': 'Dermatological changes, located on the face', 's_2111': 'Dermatological changes, male genital area', 's_1571': 'Dermatological changes, painful', 's_400': 'Dermatological changes, preceded by pain or itching', 's_402': 'Dermatological changes, recurring during infections or menstrual period', 's_404': 'Dermatological changes, rough and irregular surface', 's_1191': 'Dermatological changes, with flare-ups and remissions', 's_1957': 'Destructive thoughts towards other people or things', 's_728': "Destructive thoughts, of harming one's child", 's_729': "Destructive thoughts, of wanting to kill one's child", 's_8': 'Diarrhea', 's_412': 'Diarrhea, foamy', 's_1850': 'Diarrhea, lasting more than 14 days', 's_1849': 'Diarrhea, lasting up to 14 days', 's_1121': 'Diarrhea, mainly at night', 's_1979': 'Diarrhea, more than 6 stools a day', 's_1376': 'Diarrhea, rice water', 's_1798': 'Difference in size of testicles', 's_1574': 'Difficulty achieving orgasm', 's_269': 'Difficulty acquiring new information', 's_266': 'Difficulty biting and chewing', 's_727': 'Difficulty bonding with infant', 's_1154': 'Difficulty completely closing one eye', 's_267': 'Difficulty determining which tooth aches', 's_134': 'Difficulty not smoking first cigarette of the day', 's_265': 'Difficulty refraining from smoking cigarettes where not permitted', 's_263': 'Difficulty retracting foreskin', 's_284': 'Diminished appetite', 's_968': 'Diminished eye motility in the same direction', 's_1035': 'Diminished fear responses', 's_1021': 'Diminished superficial reflexes', 's_207': 'Diplopia', 's_1232': 'Diplopia while looking down and medially', 's_1235': 'Diplopia while looking in any direction', 's_1229': 'Diplopia with horizontal image dispersion', 's_1231': 'Diplopia with vertical or oblique image dispersion', 's_297': 'Discharge from ear', 's_1577': 'Discharge from ear, bloody', 's_1994': 'Discharge from ear, purulent', 's_302': 'Discharge from periodontal pockets', 's_369': 'Discharge from urethra', 's_1109': 'Discharge in tympanic cavity', 's_301': 'Discharge under foreskin', 's_1007': 'Disinhibition', 's_731': 'Disorganized behavior', 's_1265': 'Dissociated sensory loss', 's_501': 'Distance misjudgment', 's_730': 'Diurnal mood variation', 's_1236': 'Divergent strabismus', 's_1731': 'Dix-Hallpike maneuver, rotatory nystagmus', 's_370': 'Dizziness', 's_1479': 'Dizziness, head rotation', 's_2023': 'Dizziness, recurrent', 's_2118': 'Dizziness, unbearable', 's_936': 'Dizziness, vertigo', 's_827': 'Drinking alcohol at work', 's_819': 'Drinking alcohol despite awareness of harmful effects', 's_828': 'Drinking alone', 's_198': 'Drinking large quantities of alcohol', 's_199': 'Drinking large quantities of alcohol at one time', 's_109': 'Drinking to ease hangover', 's_1158': 'Drooping lower eyelid', 's_432': 'Drooping mouth corner', 's_974': 'Drop attack', 's_823': 'Drunk driving', 's_489': 'Dry discharge on eyelids', 's_2094': 'Dry eye', 's_247': 'Dry mouth', 's_542': 'Dry skin', 's_385': 'Dry, cracked skin, bleeding occasionally', 's_315': 'Dysarthria', 's_59': 'Dysmenorrhea', 's_1432': 'Dyspepsia', 's_962': 'Dysphagia', 's_1779': 'Dysphagia, esophageal', 's_1776': 'Dysphagia, oropharyngeal', 's_68': 'Dysphonia', 's_1958': 'Dysphonia, over 2 weeks', 's_88': 'Dyspnea', 's_92': 'Dyspnea, acute', 's_2075': 'Dyspnea, acute (trauma related)', 's_1625': 'Dyspnea, chronic', 's_1333': 'Dyspnea, exacerbating during exercise', 's_563': 'Dyspnea, orthopnea', 's_1317': 'Dyspnea, paroxysmal nocturnal', 's_2015': 'Dyspnea, resting', 's_90': 'Dyspnea, subacute', 's_1185': 'Dyspnea, with flare-ups and remissions', 's_1298': 'Dystonia', 's_291': 'Ear canal swelling', 's_47': 'Earache', 's_234': 'Easy bruising', 's_700': 'Edema', 's_171': 'Edema, ankle joint', 's_623': 'Edema, ankles', 's_2093': 'Edema, both hands', 's_175': 'Edema, both lower limbs', 's_1581': 'Edema, costochondral junctions', 's_701': 'Edema, daytime', 's_699': 'Edema, dependent on the body position', 's_1635': 'Edema, elbow joint', 's_616': 'Edema, face', 's_1995': 'Edema, feet', 's_1311': 'Edema, finger', 's_2103': 'Edema, foot', 's_1652': 'Edema, hip joint', 's_174': 'Edema, joint', 's_170': 'Edema, knee joint', 's_1433': 'Edema, lip', 's_363': 'Edema, neck', 's_702': 'Edema, nighttime', 's_1996': 'Edema, nose', 's_1464': 'Edema, one hand', 's_173': 'Edema, one lower limb', 's_1442': 'Edema, periorbital', 's_562': 'Edema, pitting', 's_176': 'Edema, scrotum', 's_1655': 'Edema, shoulder joint', 's_1997': 'Edema, toe', 's_1447': 'Edema, upper limb', 's_1431': 'Edema, wrist joint', 's_633': 'Elevated mood', 's_1166': 'Enamel hypoplasia', 's_272': 'Enamel lesions, caries', 's_219': 'Enlarged breasts', 's_1052': 'Enlarged kidneys', 's_220': 'Enlarged lymph nodes', 's_1057': 'Enlarged salivary glands', 's_480': 'Enlargement of hands, feet, or face', 's_1103': 'Enlargement of the lymphoid tissue in the pharynx', 's_1071': 'Epicritic sensation loss or impairment in fingertips', 's_733': 'Erectile dysfunction', 's_229': 'Erythema', 's_1469': 'Erythema and scaling on large portion of body', 's_1955': 'Erythema around eyes', 's_202': 'Erythema migrans', 's_323': 'Erythema of skin overlying a joint', 's_1468': 'Erythema, facial', 's_230': 'Erythema, facial, butterfly-shaped', 's_1314': 'Erythema, finger', 's_433': 'Erythema, foreskin or head of the penis', 's_557': 'Erythema, hand', 's_325': 'Erythema, limb', 's_179': 'Erythema, limb, hot to the touch', 's_1125': 'Erythema, palmar', 's_1791': 'Erythema, scalp', 's_2003': 'Erythema, toe', 's_1999': 'Erythema, vulva', 's_1498': 'Erythematous tonsils', 's_132': 'Excess of hair', 's_723': 'Excessive fear in public situations', 's_1304': 'Excessive saliva production', 's_216': 'Excessive sweating', 's_122': 'Excessive tear production', 's_1290': 'Excessive uterine enlargement in comparison to assumed duration of pregnancy', 's_725': 'Excessive worry about the health of a child', 's_1163': 'Exophthalmos', 's_606': 'Eye flashes', 's_493': 'Eye pain', 's_485': 'Eyelid lesion, itching and painful', 's_486': 'Eyelid lesion, red and warm', 's_484': 'Eyelid lesion, red lump with yellow tip', 's_591': 'Eyelid tremors', 's_235': 'Eyelid twitching', 's_488': 'Eyes sensitive to light', 's_1156': 'Facial muscle paresis', 's_1425': 'Facial muscle spasms', 's_478': 'Facial pain', 's_1203': 'Facial pain, longer than a few hours', 's_1436': 'Facial pain, paranasal sinus', 's_427': 'Facial pain, periodic', 's_1194': 'Facial pain, severe', 's_425': 'Facial pain, stabbing', 's_426': 'Facial pain, triggered by eating, touching, brushing teeth', 's_424': 'Facial pain, unilateral', 's_2100': 'Fatigue', 's_1547': 'Fatigue, for more than six months', 's_516': 'Fear of dying', 's_1087': 'Fear of going insane', 's_1088': 'Fear of losing control', 's_157': 'Fear of obesity', 's_244': 'Fear of object, situation, action', 's_721': 'Fear of public appearances', 's_1587': 'Feeling detached from your body', 's_274': 'Feeling hot', 's_205': 'Feeling of guilt', 's_206': 'Feeling of guilt or shame after drinking alcohol', 's_629': 'Feeling of helplessness', 's_632': 'Feeling of hopelessness', 's_1565': 'Feeling of rectal fullness', 's_507': 'Feeling of resignation', 's_1175': 'Feeling of weight in scrotum', 's_419': 'Feeling overweight despite low weight', 's_279': 'Feeling pressure or pulsation inside the tooth', 's_7': 'Female infertility', 's_2010': 'Fetal membranes rupture', 's_2125': 'Fetal membranes rupture, purulent or malodorous amniotic fluid', 's_98': 'Fever', 's_100': 'Fever between 100.4 and 104 °F (38 and 40 °C)', 's_99': 'Fever between 98.6 and 100.4°F (37 and 38°C)', 's_2000': 'Fever greater than 104 °F (40 °C)', 's_1186': 'Fever with flare-ups and remissions', 's_1820': 'Fever, temperature not measured', 's_636': 'Financial recklessness', 's_77': 'Fine downy hair', 's_660': 'Fits of anger', 's_993': 'Flaccid dysarthria', 's_1079': 'Flaccid paresis', 's_1080': 'Flaccid paresis, symmetrical', 's_772': 'Flat affect', 's_504': 'Foamy urine', 's_1909': 'Foot drop', 's_1645': 'Foot pain, back of the foot, during single-leg heel raise', 's_1799': 'Forearm pain', 's_146': 'Forgetting names of close friends and family', 's_204': 'Forward-leaning posture', 's_525': 'Foul-smelling stools', 's_1401': 'Frequent bowel movement', 's_505': 'Frequent infections', 's_532': 'Frequent infections, lower respiratory tract', 's_531': 'Frequent infections, upper respiratory tract', 's_215': 'Frequent urination', 's_75': 'Frequent urination, large quantities', 's_990': 'Frontal release signs', 's_366': 'Frothy, yellow-green vaginal discharge', 's_547': 'Galactorrhea', 's_2032': 'Gambling', 's_2024': 'Gambling, pathological', 's_1570': 'Gastric symptoms after eating or drinking foods containing lactose', 's_1767': 'Gastrointestinal complaints, stress-related', 's_583': 'General anxiety', 's_1226': 'Genu varum', 's_1090': 'Glassy eyes', 's_513': 'Globus sensation', 's_1302': 'Goldflam sign', 's_1263': 'Gonda-Allen sign', 's_1254': 'Gordon sign', 's_756': "Gottron's papules", 's_639': 'Grandiosity', 's_1294': 'Grape-like vaginal discharge', 's_322': 'Gum erythema', 's_19': 'Gum pain', 's_586': 'Gynecomastia', 's_121': 'Hair loss', 's_618': 'Hairy leukoplakia', 's_65': 'Halitosis', 's_686': 'Hallucinations', 's_682': 'Hallucinations, auditory', 's_683': 'Hallucinations, gustatory', 's_684': 'Hallucinations, olfactory', 's_685': 'Hallucinations, tactile', 's_681': 'Hallucinations, visual', 's_2041': 'Halos around lights', 's_1246': 'Hard lump in inguinal region', 's_1248': 'Hard lump in inguinal region, dark or bluish discoloration', 's_1247': 'Hard lump in inguinal region, irreducible', 's_1249': 'Hard lump in inguinal region, tender', 's_1346': 'Hard retinal exudates', 's_191': 'Head drop', 's_1230': 'Head tilt in order to avoid diplopia', 's_85': 'Head tremors', 's_21': 'Headache', 's_1870': 'Headache, attack lasting 4 to 72 hours', 's_1868': 'Headache, attack lasting five minutes to four hours', 's_1901': 'Headache, attack lasting three to seven days', 's_1907': 'Headache, attack lasting up to five minutes', 's_1535': 'Headache, chronic', 's_1762': 'Headache, exacerbated by increased stress', 's_625': 'Headache, exacerbating by tilting head forward', 's_799': 'Headache, exacerbating in the morning', 's_1349': 'Headache, forehead', 's_24': 'Headache, generalized', 's_604': 'Headache, lancinating', 's_1780': 'Headache, mild', 's_1781': 'Headache, moderate', 's_970': 'Headache, occipital', 's_23': 'Headache, pressing', 's_25': 'Headache, pulsating', 's_1912': 'Headache, recent', 's_605': 'Headache, series over a period of time', 's_1193': 'Headache, severe', 's_1905': 'Headache, sudden onset', 's_1911': 'Headache, temporal region', 's_22': 'Headache, unilateral', 's_1864': 'Headache, worst headache in life', 's_841': 'Hearing voices arguing', 's_840': 'Hearing voices commenting', 's_338': 'Heartburn', 's_273': 'Heavy legs at the end of the day', 's_158': 'Heavy or prolonged menstrual periods', 's_1922': 'Heel drop test', 's_1170': 'Hemarthrosis', 's_306': 'Hematemesis', 's_814': 'Hemianopsia bitemporalis', 's_1005': 'Hemiparesis', 's_1022': 'Hemiplegia', 's_116': 'Hemoptysis', 's_1051': 'Hepatomegaly', 's_1295': 'Hiccups', 's_1108': 'High-arched palate', 's_757': 'Holster sign', 's_957': 'Homonymous hemianopsia', 's_373': 'Honey-colored crust on the skin', 's_280': 'Hot flashes', 's_1481': 'Hyperalgesia', 's_760': 'Hyperkeratosis on hands', 's_1891': 'Hypersensitivity to smells', 's_1150': 'Hypersensitivity to sound', 's_543': 'Hypertension, over 140 mmHg', 's_1933': 'Hypertension, over 180 mmHg', 's_1159': 'Hypesthesia of half of the face', 's_679': 'Hypochondriacal delusions', 's_1876': 'Hypomenorrhea', 's_180': 'Hypopigmentation of the skin', 's_570': 'Hypopyon', 's_533': 'Hypotension', 's_341': 'Illusion of surroundings being bigger or smaller than they actually are', 's_317': 'Impaired balance while walking', 's_631': 'Impaired concentration', 's_1241': 'Impaired downward eye motion', 's_1227': 'Impaired lateral eye motion', 's_1240': 'Impaired medial eye motion', 's_316': 'Impaired memory', 's_825': 'Impaired memory, alcohol-related amnesia', 's_619': 'Impaired memory, finding objects of everyday use', 's_830': 'Impaired memory, short term', 's_1095': 'Impaired smell', 's_716': 'Impaired social functioning', 's_1239': 'Impaired upward eye motion', 's_320': 'Impaired vision', 's_1819': 'Impaired vision in one eye', 's_1146': 'Impaired vision on side with painful temple', 's_1818': 'Impaired vision, recent onset', 's_1384': 'Impulsive behavior', 's_2086': 'Inability to bear weight', 's_1385': 'Inability to complete tasks', 's_1300': 'Inability to move mandible sideways', 's_1551': 'Inability to pass flatus', 's_711': 'Inability to remember important aspects of a traumatic experience', 's_150': 'Inability to stop drinking alcohol', 's_223': 'Inability to stop flow of urine', 's_361': 'Increase in sexual experiences or sensations needed to attain desired effect', 's_277': 'Increased abdominal girth', 's_311': 'Increased appetite', 's_1488': 'Increased expiratory phase', 's_421': 'Increased libido', 's_991': 'Increased masseter reflex', 's_1278': 'Increased palatine reflex', 's_1279': 'Increased pharyngeal reflex', 's_310': 'Increased thirst', 's_917': 'Insomnia', 's_1745': 'Instability in knee', 's_1383': 'Intense, non-committal relationships', 's_358': 'Intermittent urine flow', 's_1084': 'Interosseous muscles atrophy, feet', 's_1083': 'Interosseous muscles atrophy, hands', 's_1416': 'Intraretinal microvascular abnormalities', 's_1411': 'Iris neovascularization', 's_1440': 'Irregular menstruations', 's_540': 'Irritability', 's_80': 'Irritability when unable to engage in activity related to sex', 's_614': 'Itching after a hot shower or bath', 's_249': 'Itching around anus', 's_253': 'Itching in crotch', 's_255': 'Itching in ear', 's_1563': 'Itching of eyes', 's_252': 'Itchy throat or nose', 's_1271': 'Jacobsohn sign', 's_1718': 'Janeway lesion', 's_332': 'Jaundice', 's_334': 'Jaundice during increased stress', 's_336': 'Jaundice during infectious disease', 's_335': 'Jaundice following intense physical exertion', 's_1961': 'Jaw pain', 's_359': 'Joint deformation', 's_2087': 'Joint deformation, posttraumatic', 's_44': 'Joint pain', 's_576': 'Joint pain, aggravated during cold, damp weather', 's_1621': 'Joint pain, ankle', 's_1623': 'Joint pain, during ankle movement', 's_1634': 'Joint pain, during elbow movement', 's_1823': 'Joint pain, during hip movement', 's_1610': 'Joint pain, during knee movement', 's_29': 'Joint pain, during movement in the morning', 's_1805': 'Joint pain, during shoulder movement', 's_1641': 'Joint pain, during thumb movement', 's_1636': 'Joint pain, during wrist movement', 's_1632': 'Joint pain, elbow', 's_79': 'Joint pain, hallux', 's_11': 'Joint pain, hip', 's_581': 'Joint pain, knee', 's_41': 'Joint pain, severe, as a result of an injury', 's_1654': 'Joint pain, shoulder', 's_1201': 'Joint pain, sudden', 's_1656': 'Joint pain, tenderness', 's_1639': 'Joint pain, thumb', 's_1430': 'Joint pain, wrist', 's_575': 'Joint stiffness', 's_1472': 'Kayser–Fleischer ring', 's_1689': "Kernig's sign", 's_664': "Koplik's spots", 's_1451': 'Kussmaul breathing', 's_778': 'Lack of boundaries in interpersonal relations', 's_1006': 'Lack of initiative, motivation, or drive', 's_964': 'Lateropulsion', 's_1282': 'Lead-pipe rigidity', 's_1014': 'Left limb-kinetic apraxia', 's_658': 'Lengthening of reaction time', 's_550': 'Lens clouding', 's_666': 'Leopard-like spots on the skin', 's_1378': "Levine's sign", 's_1054': "Lhermitte's sign", 's_1793': 'Lice eggs or nits on hair shafts', 's_1927': 'Limping due to pain', 's_1324': 'Lisch nodules', 's_763': 'Livedo reticularis', 's_1407': 'Local dark retinal blood vessels that lie in folds', 's_1405': 'Local elevation of retina', 's_1406': 'Local grey discoloration of retina', 's_1408': 'Local retinal undulation', 's_228': 'Loose teeth', 's_1115': 'Loss of body hair', 's_1543': 'Loss of consciousness', 's_190': 'Loss of consciousness, with urination or defecation', 's_287': 'Loss of interest in activities previously enjoyed, lasting at least two weeks', 's_622': 'Loss of muscle mass', 's_564': 'Loss of muscle mass, hands', 's_1070': 'Loss of sense of vibration in distal parts of extremities', 's_747': 'Loss of temperature sensation, impaired temperature sensation', 's_1394': 'Loss of the lingual papillae', 's_1027': 'Loss of vision in a superior quadrant', 's_746': 'Loss or impairment of proprioception', 's_155': 'Low self-esteem', 's_1404': 'Lower intraocular pressure (> 4-5mmHg) in affected eye compared to unaffected eye', 's_1618': 'Lower limb tenderness', 's_1622': 'Lower limb tenderness, calf', 's_1173': 'Lump in scrotum', 's_420': 'Lying about eating, hiding food', 's_2029': 'Lying to hide the extent of your gambling', 's_1733': 'Lymph node pain', 's_2077': 'Major bleeding', 's_779': 'Making rash or impulsive decisions', 's_289': 'Malocclusions', 's_1403': 'Marcus Gunn pupil', 's_665': 'Measles rash', 's_1261': 'Mendel-Bechterev sign', 's_415': 'Menstrual period more than three weeks late', 's_1768': 'Mental disturbances exacerbated by stress', 's_360': 'Microstomia', 's_2078': 'Minor uncontrollable bleeding', 's_537': 'Miosis', 's_212': 'Miscarriage', 's_1274': 'Moniz sign', 's_646': 'Mood swings', 's_258': 'Morning stiffness of hand joints', 's_1297': 'Motor retardation', 's_1104': 'Mouth breathing', 's_1': 'Mouth ulcers', 's_1210': 'Mucosal pallor', 's_1213': 'Mucosal pallor, sudden', 's_642': 'Mucous secretion in stool', 's_567': "Murphy's sign", 's_503': 'Muscle cramps', 's_650': 'Muscle weakness', 's_744': 'Muscle weakness, ascending', 's_766': 'Muscle weakness, large proximal muscles', 's_743': 'Muscle weakness, legs', 's_767': 'Muscle weakness, standing up or climbing stairs', 's_1142': 'Myalgia', 's_748': 'Myalgia, deep and dull', 's_1766': 'Myalgia, exacerbated by stress', 's_536': 'Mydriasis', 's_1476': 'Myringitis', 's_603': 'Nail clubbing', 's_1167': 'Nail dystrophy', 's_2005': 'Nail pain', 's_107': 'Nasal catarrh', 's_331': 'Nasal congestion', 's_1812': 'Nasal congestion, chronic', 's_524': 'Nasal polyps', 's_1303': 'Nasal speech', 's_156': 'Nausea', 's_1388': 'Neck asymmetry', 's_1483': 'Neck pain', 's_2173': 'Neck pain, during head movement', 's_965': 'Neck pain, unilateral', 's_671': 'Neck vein distention', 's_327': 'Need to smoke cigarette when waking up', 's_820': 'Neglecting family, work, or hobbies due to alcohol', 's_326': 'Neglecting obligations such as work, study, or family to pursue sex or think about sex', 's_143': 'Nervousness or weepiness', 's_1086': 'Neural tenderness', 's_2080': 'Neurological deficit, since less than 24 hours', 's_2083': 'Neurological deficit, since more than 24 hours', 's_678': 'Nihilistic delusions', 's_1422': 'Nipple discharge', 's_2172': 'No signs of upper respiratory infection', 's_182': 'Nocturia', 's_300': 'Nodule located in breast', 's_1217': 'Nonmenstrual vaginal bleeding or spotting', 's_822': 'Nonstop drinking for several days', 's_2168': 'Normal body temperature', 's_2169': 'Normal heart rate', 's_2171': 'Normal lung sounds on auscultation', 's_2174': 'Normal vital signs', 's_1605': 'Nose pain', 's_2016': 'Nosebleed, single episode', 's_1429': 'Nosebleeds', 's_2017': 'Nosebleeds, recurrent', 's_1305': 'Numbness of part of ear', 's_1148': 'Numbness of tongue', 's_377': 'Numerous nevi', 's_479': 'Nystagmus', 's_1721': 'Nystagmus, horizontal', 's_127': 'Obsessions', 's_687': 'Obsessions, fears', 's_688': 'Obsessions, images', 's_1237': 'Ocular bulb rotation laterally and downward', 's_1234': 'Ocular bulb rotation medially and upward', 's_750': 'Ocular motility disorder', 's_1147': 'Oculomotor nerve palsy', 's_509': 'Odynophagia', 's_362': 'Oily skin', 's_1877': 'Oligomenorrhea', 's_185': 'Oliguria', 's_1313': 'One finger pain', 's_1107': 'Opacified tympanic membrane', 's_389': 'Open comedones', 's_1256': 'Oppenheim sign', 's_1410': 'Optic disc neovascularization', 's_1329': 'Optic nerve disc pallor', 's_868': 'Orbicularis oris muscle spasm', 's_844': 'Organic cause', 's_541': 'Orthostatic hypotension', 's_1719': 'Osler nodes', 's_1289': 'Ovarian enlargement', 's_1110': 'Overbite', 's_371': 'Overwork', 's_1180': 'Pain behind ear', 's_1382': 'Pain caused by firm pressure on tibia', 's_2092': 'Pain in both feet', 's_2091': 'Pain in both hands', 's_1453': 'Pain in both lower limbs', 's_1112': 'Pain in both lower limbs, stocking distribution', 's_1452': 'Pain in both upper limbs', 's_28': 'Pain in crotch', 's_34': 'Pain in crotch, sudden', 's_554': 'Pain in fingers or hand', 's_60': 'Pain in glans penis', 's_1250': 'Pain in groin during coughing, sneezing or laughing', 's_579': 'Pain in lower limb', 's_1620': 'Pain in lower limb, calf', 's_232': 'Pain in lower limb, calf, severe while walking', 's_732': 'Pain in lower limb, calf, severe while walking, intermittent claudication', 's_1930': 'Pain in lower limb, severe', 's_1893': 'Pain in lower limb, thigh', 's_578': 'Pain in one foot', 's_52': 'Pain in scrotum', 's_430': 'Pain in temporomandibular joint while yawning, chewing, or biting', 's_1878': 'Pain in the back of the leg, above the heel', 's_580': 'Pain in upper limb', 's_1935': 'Pain in upper limb, severe', 's_476': 'Pain increases when touching ear area', 's_54': 'Pain near eye socket', 's_39': 'Pain while urinating', 's_1393': 'Painful defecation', 's_33': 'Painful ejaculation', 's_32': 'Painful intercourse', 's_2119': 'Painless wound', 's_1371': 'Palatine petechiae', 's_10': 'Pale and brittle nails', 's_569': 'Pale or clay-colored stools', 's_9': 'Pale skin', 's_298': 'Palpable neck mass', 's_110': 'Palpitations', 's_2002': 'Palpitations, over 5 minutes', 's_2004': 'Palpitations, recurrent', 's_722': 'Panic attacks in public appearances', 's_803': 'Papilledema', 's_101': 'Papule or nodule smaller than 1 cm in diameter', 's_838': 'Paralogical thinking', 's_1296': 'Paralysis, limb', 's_1486': 'Paraspinal muscle tenderness', 's_148': 'Paresis, limb', 's_268': 'Paresis, limb, upper limbs', 's_518': 'Paresthesia', 's_126': 'Paresthesia around the mouth', 's_1066': 'Paresthesia in both upper limbs, glove distribution', 's_125': 'Paresthesia in feet', 's_1069': 'Paresthesia, ascending', 's_1063': 'Paresthesia, both lower limbs', 's_973': 'Paresthesia, both upper limbs', 's_971': 'Paresthesia, face', 's_83': 'Paresthesia, limbs', 's_2001': 'Paresthesia, one lower limb', 's_1449': 'Paresthesia, one upper limb', 's_1932': 'Paresthesia, sudden onset', 's_1068': 'Paresthesias, symmetrical', 's_529': 'Parotid swelling', 's_1800': 'Past appendectomy', 's_1801': 'Past cholecystectomy', 's_1715': 'Pathologic fractures', 's_795': 'Pencil-thin stools', 's_2043': 'Penile itching', 's_1380': 'Pericardial friction rub', 's_1312': 'Perionychial pain', 's_2084': 'Periorbital ecchymosis', 's_1018': 'Perseveration', 's_594': 'Petechiae', 's_1367': 'Pharyngeal erythema', 's_20': 'Pharyngeal pain', 's_1826': 'Pharyngeal pain, unilateral', 's_1102': 'Pharyngeal swelling, bilateral', 's_1390': 'Pharyngeal swelling, unilateral', 's_915': 'Phobia', 's_2088': 'Physical injury symptom', 's_281': 'Physical trauma (to self or others) after drinking alcohol', 's_1379': 'Pill-rolling tremor', 's_1437': 'Pleural effusion', 's_1396': 'Pleural friction rub', 's_2112': 'Pleuritic chest pain after an injury', 's_770': 'Poor personal hygiene', 's_1093': 'Positive allergy challenge', 's_1092': 'Positive skin allergy (prick or patch) test', 's_2175': 'Possible rabies exposure', 's_1471': 'Postnasal drip', 's_225': 'Premature graying', 's_69': 'Preoccupation with food', 's_1323': 'Presence of neurofibromas', 's_1162': 'Pretibial myxedema', 's_1397': 'Priapism', 's_123': 'Problems with everyday tasks such as washing, eating, dressing', 's_593': 'Prolonged bleeding time', 's_777': 'Prolonged nighttime sleep', 's_1089': 'Prostate enlargement', 's_254': 'Pruritus', 's_251': 'Pruritus, aggravated by change in temperature, sweating, or wearing wool', 's_2033': 'Pruritus, foot', 's_250': 'Pruritus, most intense at night', 's_1617': 'Pruritus, scalp', 's_1548': 'Pseudomembrane in throat or nose', 's_649': 'Psychomotor retardation', 's_653': 'Pupil dilation variation', 's_1238': 'Pupil or pupils unreactive to accomodation', 's_762': 'Purpuric rash', 's_1915': 'Purpuric rash, palpable', 's_1315': 'Pus under the skin of the finger', 's_388': 'Pustule', 's_989': 'Pyramidal signs', 's_637': 'Quickening of thoughts and speech', 's_417': 'Rash', 's_706': 'Re-experiencing the psychological trauma in nightmares', 's_705': 'Re-experiencing the psychological trauma in recurring flashbacks', 's_708': 'Re-experiencing the psychological trauma through physiological reactivity', 's_707': 'Re-experiencing traumatic event', 's_1494': 'Rebound tenderness', 's_528': 'Recent alcohol consumption', 's_2079': 'Recent injury without bleeding', 's_1029': 'Receptive aphasia', 's_142': 'Recurrent gastric ulcers', 's_139': 'Recurrent tonsils inflammation', 's_72': 'Red and stinging conjunctivae', 's_692': 'Red and swollen oral mucosa', 's_492': 'Red eye', 's_384': 'Red maculas with silver-white, flaky scales', 's_1301': 'Red macules', 's_73': 'Red stretch marks on abdomen, hips or thighs', 's_1181': 'Redness behind the ear', 's_1145': 'Redness in temporal region', 's_758': 'Redness on shoulders and nape of neck', 's_410': 'Reduced body temperature', 's_572': 'Reduced degree of facial expression', 's_2008': 'Regular uterine contractions', 's_330': 'Regurgitation', 's_780': 'Religious delusion', 's_2076': 'Respiratory distress (trauma related)', 's_186': 'Restricted mobility, problem bending over', 's_1903': 'Restricted passive range of joint motion', 's_1713': 'Restricted range of joint motion', 's_1418': 'Retinal artery occlusions', 's_1344': 'Retinal hemorrhage', 's_1412': 'Retinal microaneurysms', 's_1415': 'Retinal neovascularization elsewhere', 's_1414': 'Retinal swelling', 's_343': 'Retraction or indentation of nipple', 's_1055': 'Retrobulbar neuritis', 's_1533': 'Rhinitis triggered by environment', 's_1682': 'Rhinophyma', 's_816': 'Risky drinking', 's_1738': "Romberg's sign", 's_1377': 'Rose spots on lower chest and abdomen', 's_1255': "Rossolimo's sign", 's_1732': "Rovsing's sign", 's_1141': "Russell's sign", 's_1285': 'Sagging of the palate ipsilateral to suspected nerve damage', 's_1544': 'Scarlet fever rash', 's_1259': "Schaeffer's sign", 's_836': 'Schizophasia', 's_1492': 'Scleral icterus', 's_124': 'Scotoma, eye floaters', 's_1342': 'Scrotal transillumination', 's_835': 'Seasonal pattern of depressive symptoms', 's_829': 'Secret drinking', 's_2045': 'Seizures', 's_189': 'Seizures with loss of consciousness', 's_539': 'Seizures without loss of consciousness', 's_568': 'Self-disgust after binge eating', 's_423': 'Sense of self-worth dependent on weight', 's_972': 'Sensory loss in both arms', 's_313': 'Sensory loss in one limb', 's_959': 'Sensory loss involving the face', 's_2089': 'Serious injury, respiratory difficulty, severe bleeding, new neurological problem', 's_2081': 'Severe pain, trauma related', 's_2': 'Sexual activity in recent months', 's_74': 'Sexual activity more often or with more partners than intended', 's_1399': "Shafer's sign", 's_1462': 'Shallow breathing', 's_648': 'Simple auditory paradelusions', 's_647': 'Simple visual paradelusions', 's_1496': 'Sinuses tender to palpation', 's_654': 'Skin and blood vessel inflammation', 's_1470': 'Skin desquamation', 's_1831': 'Skin mass', 's_1830': 'Skin mass greater than 1 cm in diameter', 's_1931': 'Skin mass, bleeding', 's_382': 'Skin mole or birthmark with diameter greater than 6 mm', 's_381': 'Skin mole or birthmark with irregular border', 's_1674': 'Skin pain', 's_43': 'Skin pain, severe', 's_1209': 'Skin pallor, sudden', 's_376': 'Skin phototype I or II', 's_1650': 'Skin thickening', 's_1474': 'Skull lesions', 's_319': 'Sleep disorder', 's_238': 'Slower gait', 's_93': 'Smoking large quantity of cigarettes', 's_308': 'Smoking most cigarettes in the morning', 's_271': 'Smooth face without wrinkles', 's_715': 'Sneeze', 's_136': 'Sneezing attacks', 's_67': 'Snoring', 's_659': 'Social isolation', 's_773': 'Social maladjustment', 's_1242': 'Soft lump in inguinal region', 's_1244': 'Soft lump in inguinal region, decreasing while supine', 's_1243': 'Soft lump in inguinal region, enlarging during increase in abdominal pressure', 's_1245': 'Soft lump in inguinal region, reducible', 's_1347': 'Soft retinal exudates', 's_1426': 'Spasms in upper extremities', 's_992': 'Spastic dysarthria', 's_571': 'Spasticity', 's_213': 'Spending a lot of time on sex-related activity', 's_1536': 'Spine asymmetry', 's_259': 'Spine or joint stiffness subsiding after exercise', 's_1169': 'Splenic agenesis', 's_1045': 'Splenomegaly', 's_1434': 'Steatorrhea', 's_1270': "Sterling's sign", 's_1381': 'Sternal rub', 's_418': 'Stiff neck', 's_257': 'Stiffness of spine in the morning', 's_880': 'Stimulants use (amphetamine, cocaine)', 's_201': 'Stinging eyes and feeling of sand under eyelids', 's_1260': "Stransky's sign", 's_1467': 'Strawberry tongue', 's_1562': 'Stridor', 's_544': 'Stroke', 's_1275': "Strumpell's sign", 's_1067': 'Sudden face flushing', 's_530': 'Sudden increase in blood pressure', 's_1139': 'Suicidal thoughts', 's_1140': 'Suicidal thoughts with plan and steps taken', 's_1943': 'Sunburn', 's_698': 'Sunken eyeballs', 's_221': 'Surface of lesion on genitals resembles cauliflower', 's_383': 'Suspicious mole or birthmark', 's_214': 'Sweating on forehead on painful side', 's_217': 'Sweating, night', 's_1182': 'Swelling in the mastoid region', 's_1099': 'Swelling of nasal concha', 's_1097': 'Swelling of nasal mucosa', 's_1144': 'Swelling of temporal artery', 's_1098': 'Swollen blue or bluish-gray nasal mucosa', 's_177': 'Swollen cheek', 's_172': 'Swollen gums', 's_1081': 'Symmetrical flaccid paresis in lower limbs (mainly feet)', 's_1082': 'Symmetrical flaccid paresis in upper limbs (mainly hands)', 's_162': 'Symptoms appear after taking painkillers, change in diet', 's_602': 'Symptoms do not occur during sleep', 's_558': 'Symptoms exacerbated by cold temperature', 's_160': 'Symptoms increase in evening', 's_165': 'Symptoms occur several hours after drinking excessive alcohol', 's_161': 'Symptoms regularly appear a few days before menstrual period', 's_164': 'Symptoms subside when menstrual period begins', 's_261': 'Tachycardia', 's_227': 'Tachypnea', 's_1153': 'Taste disorder in anterior two-thirds of tongue', 's_1096': 'Taste disorders', 's_545': 'Telangiectasias', 's_1685': 'Telangiectasias, face', 's_1465': 'Temporary blindness', 's_640': 'Tenesmus', 's_1114': "Terry's nails", 's_487': 'Thick eye discharge', 's_1790': 'Thickened nails', 's_386': 'Thickened nails with pits or grooves', 's_2039': 'Third-degree burn', 's_1276': "Throckmorton's sign", 's_555': 'Tingling fingers', 's_1899': 'Tingling fingers, first three digits', 's_1900': 'Tingling fingers, fourth and fifth digits', 's_407': 'Tinnitus', 's_937': 'Tinnitus, low frequency', 's_1466': 'Tinnitus, pulsatile', 's_1833': 'Toe pain', 's_1085': 'Toenail dystrophy', 's_673': 'Tongue enlargement', 's_607': 'Tongue erythema', 's_995': 'Tongue muscle atrophy', 's_1534': 'Tonsil stones', 's_1050': 'Tooth loss', 's_551': 'Toothache', 's_55': 'Toothache after contact with cold, sweet, or hot food', 's_56': 'Toothache while chewing', 's_339': 'Toothache, reduced after cold foods or drinks', 's_233': 'Toothache, severe', 's_231': 'Toothache, strong reaction to heat', 's_1100': 'Transverse furrow on the nose', 's_1421': 'Tremor, flapping', 's_1264': 'Tremor, intention', 's_1454': 'Tremor, kinetic', 's_1455': 'Tremor, resting', 's_538': 'Tremors', 's_87': 'Tremors, both hands', 's_86': 'Tremors, in one hand', 's_1765': 'Tremors, stress-related', 's_84': 'Tremors, subside after drinking alcohol', 's_590': 'Tremors, tongue', 's_601': 'Tremors, worsen after caffeine intake', 's_1056': 'Trigeminal neuralgia', 's_256': 'Trismus', 's_1262': "Tromner's sign", 's_1074': 'Trophic changes', 's_1076': 'Trophic ulcer', 's_1078': 'Trophic ulcer on the plantar side of the foot', 's_691': 'Trouble beginning urination', 's_644': 'Trouble planning the future', 's_866': 'Trousseau sign of latent tetany', 's_2163': 'Twisted neck', 's_1366': 'Tympanic membrane light reflex distortion', 's_672': 'Ulcer on skin', 's_194': 'Ulceration on nipple', 's_351': 'Ulcerations or abscesses near the anus', 's_668': 'Unilateral enophthalmos', 's_149': 'Unilateral facial paresis', 's_1586': 'Unilateral vulval swelling', 's_510': 'Urethral discharge when pressing the penis', 's_153': 'Urinary incontinence', 's_696': 'Urinary retention', 's_690': 'Urinary urgency', 's_689': 'Urination in small amounts', 's_183': 'Urination while coughing or laughing or during physical exertion', 's_393': 'Urticaria', 's_791': 'Urticaria triggered by cold', 's_793': 'Urticaria triggered by heat', 's_790': 'Urticaria triggered by prolonged pressure on the skin', 's_789': 'Urticaria triggered by scratching', 's_794': 'Urticaria triggered by sunlight', 's_243': 'Using methods to lose weight: vomiting, starvation diets', 's_1287': 'Uvula deviation towards unaffected side', 's_759': 'V-shaped redness on chest', 's_64': 'Vaginal discharge with unpleasant odor', 's_1569': 'Vaginal discharge, scant, white, clumpy and odorless', 's_1811': 'Vaginal dryness', 's_2082': 'Vascular compromise', 's_1031': 'Verbal learning disability', 's_1318': 'Vesicular exanthema of mouth or ear', 's_824': 'Violating social norms after drinking alcohol', 's_290': 'Visible and palpable enlarged vein of limb, chest or abdomen', 's_1792': 'Visible head lice on scalp', 's_1034': 'Visual agnosia', 's_494': 'Visual field narrowing', 's_1398': 'Vitreous hemorrhage', 's_305': 'Vomiting', 's_1949': 'Vomiting, every time after meal', 's_1365': 'Vomiting, more often in the morning', 's_801': 'Vomiting, projectile', 's_1875': 'Vulvovaginal burning', 's_630': 'Vulvovaginal itching', 's_1829': 'Vulvovaginal pain', 's_1219': 'Waist-hip ratio (WHR) over 0.85 in women', 's_1218': 'Waist-hip ratio (WHR) over 1.0 in men', 's_776': 'Waking up early', 's_1155': 'Weak eye clenching', 's_1280': 'Weak or absent pharyngeal reflex', 's_1348': 'Weak peripheral pulses', 's_735': 'Weak pulse in legs', 's_1332': 'Weakness exacerbates after exercise', 's_226': 'Weight gain', 's_285': 'Weight loss', 's_237': 'Weight loss without loss of appetite', 's_1402': 'Weiss ring', 's_1340': "Westphal's sign", 's_474': 'Wheezing, audible', 's_1788': 'White nail discoloration', 's_1673': 'White oral plaques', 's_1796': 'White patch on cornea', 's_1183': "Winterbottom's sign", 's_1937': 'Worms in stool', 's_1980': 'Wound', 's_1981': 'Wound infection', 's_342': 'Wrinkling or dimpling of skin on breast', 's_1910': 'Wrist drop', 's_613': 'Xanthelasma', 's_1561': 'Xanthoma', 's_1789': 'Yellow nail discoloration'} # list_of_symptoms = ['Abdominal guarding', 'Abdominal pain', 'Abdominal pain associated with menstruation', # 'Absence of a pulse', 'Aggressiveness', 'Agitation', 'Ankle deformity', 'Ankle swelling', # 'Anxiety', 'Arm swelling', 'Back deformity', 'Back pain', 'Black stools', # 'Blackening of vision', 'Blackhead', 'Bleeding from vagina', # 'Bleeding in the conjunctiva of the eye', 'Bloated feeling in the stomach', 'Blood in stool', # 'Bloody cough', 'Blue colored skin', 'Blue spot on skin', 'Blurred vision', # 'Bold area among hair on the head', 'Bone fracture', 'Breathing-related pains', # 'Brittleness of nails', 'Bulging abdominal wall', 'Burning eyes', 'Burning in the throat', # 'Burning nose', 'Burning sensation when urinating', 'Changes in the nails', 'Cheek swelling', # 'Chest pain', 'Chest tightness', 'Chills', 'Coarsening of the skin structure', 'Cold feet', # 'Cold hands', 'Cold sweats', 'Cough', 'Cough with sputum', 'Cramps', 'Cravings', 'Crusting', # 'Curvature of the spine', 'Dark urine', 'Decreased urine stream', 'Delayed start to urination', # 'Diarrhea', 'Difficult defecation', 'Difficulty in finding words', 'Difficulty in speaking', # 'Difficulty in swallowing', 'Difficulty to concentrate', 'Discoloration of nails', # 'Disorientation regarding time or place', 'Distended abdomen', 'Dizziness', 'Double vision', # 'Double vision, acute-onset', 'Dribbling after urination', 'Drooping eyelid', 'Drowsiness', # 'Dry eyes', 'Dry mouth', 'Dry skin', 'Earache', 'Early satiety', 'Eye blinking', 'Eye pain', # 'Eye redness', 'Eyelid swelling', 'Eyelids sticking together', 'Face pain', 'Facial paralysis', # 'Facial swelling', 'Fast, deepened breathing', 'Fatty defecation', 'Feeling faint', # 'Feeling of foreign body in the eye', 'Feeling of pressure in the ear', # 'Feeling of residual urine', 'Feeling of tension in the legs', 'Fever', 'Finger deformity', # 'Flaking skin', 'Flaking skin on the head', 'Flatulence', 'Foot pain', 'Foot swelling', # 'Forgetfulness', 'Formation of blisters on a skin area', 'Foul smelling defecation', # 'Frequent urination', 'Genital warts', 'Hair loss', 'Hallucination', 'Halo', 'Hand pain', # 'Hand swelling', 'Hard defecation', 'Hardening of the skin', 'Headache', 'Hearing loss', # 'Heart murmur', 'Heartburn', 'Hiccups', 'Hip deformity', 'Hip pain', 'Hoarseness', # 'Hot flushes', 'Immobilization', 'Impaired balance', 'Impaired hearing', # 'Impaired light-dark adaptation', 'Impairment of male potency', 'Incomplete defecation', # 'Increased appetite', 'Increased drive', 'Increased salivation', 'Increased thirst', # 'Increased touch sensitivity', 'Increased urine quantity', 'Involuntary movements', # 'Irregular heartbeat', 'Irregular mole', 'Itching eyes', 'Itching in the ear', # 'Itching in the mouth or throat', 'Itching in the nose', 'Itching of skin', # 'Itching of the anus', 'Itching on head', 'Itching or burning in the genital area', # 'Joint effusion', 'Joint instability', 'Joint pain', 'Joint redness', 'Joint swelling', # 'Joylessness', 'Knee deformity', 'Knee pain', 'Leg cramps', 'Leg swelling', 'Leg ulcer', # 'Less than 3 defecations per week', 'Limited mobility of the ankle', # 'Limited mobility of the back', 'Limited mobility of the fingers', # 'Limited mobility of the hip', 'Limited mobility of the leg', 'Lip swelling', 'Lockjaw', # 'Loss of eye lashes', 'Lower abdominal pain', 'Lower-back pain', 'Lump in the breast', # 'Malposition of the testicles', 'Marked veins', 'Memory gap', 'Menstruation disorder', # 'Missed period', 'Moist and softened skin', 'Mood swings', 'Morning stiffness', 'Mouth pain', # 'Mouth ulcers', 'Muscle pain', 'Muscle stiffness', 'Muscle weakness', # 'Muscular atrophy in the leg', 'Muscular atrophy of the arm', 'Muscular weakness in the arm', # 'Muscular weakness in the leg', 'Nausea', 'Neck pain', 'Neck stiffness', 'Nervousness', # 'Night cough', 'Night sweats', 'Non-healing skin wound', 'Nosebleed', 'Numbness in the arm', # 'Numbness in the leg', 'Numbness of the hands', 'Oversensitivity to light', 'Overweight', # 'Pain in the bones', 'Pain in the calves', 'Pain in the limbs', 'Pain of the anus', # 'Pain on swallowing', 'Pain radiating to the arm', 'Pain radiating to the leg', # 'Pain when chewing', 'Painful defecation', 'Painful urination', 'Pallor', 'Palpitations', # 'Paralysis', 'Physical inactivity', 'Problems with the sense of touch in the face', # 'Problems with the sense of touch in the feet', 'Protrusion of the eyes', # 'Purulent discharge from the urethra', 'Purulent discharge from the vagina', # 'Rebound tenderness', 'Reduced appetite', 'Ringing in the ear', 'Runny nose', # 'Sadness', 'Scalp redness', 'Scar', 'Sensitivity to cold', 'Sensitivity to glare', # 'Sensitivity to noise', 'Shiny red tongue', 'Shortness of breath', 'Side pain', 'Skin lesion', # 'Skin nodules', 'Skin rash', 'Skin redness', 'Skin thickening', 'Skin wheal', # 'Sleepiness with spontaneous falling asleep', 'Sleeplessness', 'Sneezing', 'Sore throat', # 'Sputum', 'Stomach burning', 'Stress-related leg pain', 'Stuffy nose', 'Sweating', # 'Swelling in the genital area', 'Swelling of the testicles', 'Swollen glands in the armpit', # 'Swollen glands in the groin', 'Swollen glands in the neck', 'Tears', # 'Testicular pain', 'Tic', 'Tingling', 'Tiredness', 'Toe deformity', 'Toe swelling', # 'Tongue burning', 'Tongue swelling', 'Tremor at rest', 'Tremor on movement', # 'Trouble understanding speech', 'Unconsciousness, short', 'Uncontrolled defecation', # 'Underweight', 'Urge to urinate', 'Urination during the night', 'Vision impairment', # 'Vision impairment for far objects', 'Vision impairment for near objects', 'Visual field loss', # 'Vomiting', 'Vomiting blood', 'Weakness or numbness on right or left side of body', # 'Weight gain', 'Weight loss', 'Wheezing', 'Wound', 'Yellow colored skin', # 'Yellowish discoloration of the white part of the eye'] # list_with_id = [{'ID': 188, 'Name': 'Abdominal guarding'}, {'ID': 10, 'Name': 'Abdominal pain'}, # {'ID': 223, 'Name': 'Abdominal pain associated with menstruation'}, # {'ID': 984, 'Name': 'Absence of a pulse'}, {'ID': 974, 'Name': 'Aggressiveness'}, # {'ID': 981, 'Name': 'Agitation'}, {'ID': 996, 'Name': 'Ankle deformity'}, # {'ID': 147, 'Name': 'Ankle swelling'}, {'ID': 238, 'Name': 'Anxiety'}, # {'ID': 971, 'Name': 'Arm swelling'}, {'ID': 998, 'Name': 'Back deformity'}, # {'ID': 104, 'Name': 'Back pain'}, {'ID': 180, 'Name': 'Black stools'}, # {'ID': 57, 'Name': 'Blackening of vision'}, {'ID': 24, 'Name': 'Blackhead'}, # {'ID': 284, 'Name': 'Bleeding from vagina'}, # {'ID': 176, 'Name': 'Bleeding in the conjunctiva of the eye'}, # {'ID': 48, 'Name': 'Bloated feeling in the stomach'}, {'ID': 190, 'Name': 'Blood in stool'}, # {'ID': 233, 'Name': 'Bloody cough'}, {'ID': 991, 'Name': 'Blue colored skin'}, # {'ID': 240, 'Name': 'Blue spot on skin'}, {'ID': 77, 'Name': 'Blurred vision'}, # {'ID': 239, 'Name': 'Bold area among hair on the head'}, {'ID': 156, 'Name': 'Bone fracture'}, # {'ID': 250, 'Name': 'Breathing-related pains'}, {'ID': 979, 'Name': 'Brittleness of nails'}, # {'ID': 192, 'Name': 'Bulging abdominal wall'}, {'ID': 75, 'Name': 'Burning eyes'}, # {'ID': 46, 'Name': 'Burning in the throat'}, {'ID': 288, 'Name': 'Burning nose'}, # {'ID': 107, 'Name': 'Burning sensation when urinating'}, {'ID': 91, 'Name': 'Changes in the nails'}, # {'ID': 170, 'Name': 'Cheek swelling'}, {'ID': 17, 'Name': 'Chest pain'}, # {'ID': 31, 'Name': 'Chest tightness'}, {'ID': 175, 'Name': 'Chills'}, # {'ID': 218, 'Name': 'Coarsening of the skin structure'}, {'ID': 89, 'Name': 'Cold feet'}, # {'ID': 978, 'Name': 'Cold hands'}, {'ID': 139, 'Name': 'Cold sweats'}, {'ID': 15, 'Name': 'Cough'}, # {'ID': 228, 'Name': 'Cough with sputum'}, {'ID': 94, 'Name': 'Cramps'}, {'ID': 49, 'Name': 'Cravings'}, # {'ID': 134, 'Name': 'Crusting'}, {'ID': 260, 'Name': 'Curvature of the spine'}, # {'ID': 108, 'Name': 'Dark urine'}, {'ID': 163, 'Name': 'Decreased urine stream'}, # {'ID': 165, 'Name': 'Delayed start to urination'}, {'ID': 50, 'Name': 'Diarrhea'}, # {'ID': 79, 'Name': 'Difficult defecation'}, {'ID': 126, 'Name': 'Difficulty in finding words'}, # {'ID': 98, 'Name': 'Difficulty in speaking'}, {'ID': 93, 'Name': 'Difficulty in swallowing'}, # {'ID': 53, 'Name': 'Difficulty to concentrate'}, {'ID': 216, 'Name': 'Discoloration of nails'}, # {'ID': 128, 'Name': 'Disorientation regarding time or place'}, {'ID': 989, 'Name': 'Distended abdomen'}, # {'ID': 207, 'Name': 'Dizziness'}, {'ID': 71, 'Name': 'Double vision'}, # {'ID': 270, 'Name': 'Double vision, acute-onset'}, {'ID': 162, 'Name': 'Dribbling after urination'}, # {'ID': 244, 'Name': 'Drooping eyelid'}, {'ID': 43, 'Name': 'Drowsiness'}, # {'ID': 273, 'Name': 'Dry eyes'}, {'ID': 272, 'Name': 'Dry mouth'}, {'ID': 151, 'Name': 'Dry skin'}, # {'ID': 87, 'Name': 'Earache'}, {'ID': 92, 'Name': 'Early satiety'}, {'ID': 242, 'Name': 'Eye blinking'}, # {'ID': 287, 'Name': 'Eye pain'}, {'ID': 33, 'Name': 'Eye redness'}, # {'ID': 208, 'Name': 'Eyelid swelling'}, {'ID': 209, 'Name': 'Eyelids sticking together'}, # {'ID': 219, 'Name': 'Face pain'}, {'ID': 246, 'Name': 'Facial paralysis'}, # {'ID': 970, 'Name': 'Facial swelling'}, {'ID': 153, 'Name': 'Fast, deepened breathing'}, # {'ID': 83, 'Name': 'Fatty defecation'}, {'ID': 982, 'Name': 'Feeling faint'}, # {'ID': 76, 'Name': 'Feeling of foreign body in the eye'}, # {'ID': 86, 'Name': 'Feeling of pressure in the ear'}, {'ID': 164, 'Name': 'Feeling of residual urine'}, # {'ID': 145, 'Name': 'Feeling of tension in the legs'}, {'ID': 11, 'Name': 'Fever'}, # {'ID': 995, 'Name': 'Finger deformity'}, {'ID': 214, 'Name': 'Flaking skin'}, # {'ID': 245, 'Name': 'Flaking skin on the head'}, {'ID': 154, 'Name': 'Flatulence'}, # {'ID': 255, 'Name': 'Foot pain'}, {'ID': 1002, 'Name': 'Foot swelling'}, # {'ID': 125, 'Name': 'Forgetfulness'}, {'ID': 62, 'Name': 'Formation of blisters on a skin area'}, # {'ID': 84, 'Name': 'Foul smelling defecation'}, {'ID': 59, 'Name': 'Frequent urination'}, # {'ID': 110, 'Name': 'Genital warts'}, {'ID': 152, 'Name': 'Hair loss'}, # {'ID': 976, 'Name': 'Hallucination'}, {'ID': 72, 'Name': 'Halo'}, {'ID': 186, 'Name': 'Hand pain'}, # {'ID': 148, 'Name': 'Hand swelling'}, {'ID': 80, 'Name': 'Hard defecation'}, # {'ID': 184, 'Name': 'Hardening of the skin'}, {'ID': 9, 'Name': 'Headache'}, # {'ID': 206, 'Name': 'Hearing loss'}, {'ID': 985, 'Name': 'Heart murmur'}, # {'ID': 45, 'Name': 'Heartburn'}, {'ID': 122, 'Name': 'Hiccups'}, {'ID': 993, 'Name': 'Hip deformity'}, # {'ID': 196, 'Name': 'Hip pain'}, {'ID': 121, 'Name': 'Hoarseness'}, {'ID': 149, 'Name': 'Hot flushes'}, # {'ID': 197, 'Name': 'Immobilization'}, {'ID': 120, 'Name': 'Impaired balance'}, # {'ID': 90, 'Name': 'Impaired hearing'}, {'ID': 70, 'Name': 'Impaired light-dark adaptation'}, # {'ID': 113, 'Name': 'Impairment of male potency'}, {'ID': 81, 'Name': 'Incomplete defecation'}, # {'ID': 131, 'Name': 'Increased appetite'}, {'ID': 262, 'Name': 'Increased drive'}, # {'ID': 204, 'Name': 'Increased salivation'}, {'ID': 40, 'Name': 'Increased thirst'}, # {'ID': 220, 'Name': 'Increased touch sensitivity'}, {'ID': 39, 'Name': 'Increased urine quantity'}, # {'ID': 257, 'Name': 'Involuntary movements'}, {'ID': 986, 'Name': 'Irregular heartbeat'}, # {'ID': 65, 'Name': 'Irregular mole'}, {'ID': 73, 'Name': 'Itching eyes'}, # {'ID': 88, 'Name': 'Itching in the ear'}, {'ID': 973, 'Name': 'Itching in the mouth or throat'}, # {'ID': 96, 'Name': 'Itching in the nose'}, {'ID': 21, 'Name': 'Itching of skin'}, # {'ID': 999, 'Name': 'Itching of the anus'}, {'ID': 247, 'Name': 'Itching on head'}, # {'ID': 268, 'Name': 'Itching or burning in the genital area'}, {'ID': 194, 'Name': 'Joint effusion'}, # {'ID': 198, 'Name': 'Joint instability'}, {'ID': 27, 'Name': 'Joint pain'}, # {'ID': 230, 'Name': 'Joint redness'}, {'ID': 193, 'Name': 'Joint swelling'}, # {'ID': 47, 'Name': 'Joylessness'}, {'ID': 994, 'Name': 'Knee deformity'}, # {'ID': 256, 'Name': 'Knee pain'}, {'ID': 146, 'Name': 'Leg cramps'}, # {'ID': 231, 'Name': 'Leg swelling'}, {'ID': 143, 'Name': 'Leg ulcer'}, # {'ID': 82, 'Name': 'Less than 3 defecations per week'}, # {'ID': 992, 'Name': 'Limited mobility of the ankle'}, # {'ID': 167, 'Name': 'Limited mobility of the back'}, # {'ID': 178, 'Name': 'Limited mobility of the fingers'}, # {'ID': 1000, 'Name': 'Limited mobility of the hip'}, {'ID': 195, 'Name': 'Limited mobility of the leg'}, # {'ID': 35, 'Name': 'Lip swelling'}, {'ID': 205, 'Name': 'Lockjaw'}, # {'ID': 210, 'Name': 'Loss of eye lashes'}, {'ID': 174, 'Name': 'Lower abdominal pain'}, # {'ID': 263, 'Name': 'Lower-back pain'}, {'ID': 261, 'Name': 'Lump in the breast'}, # {'ID': 266, 'Name': 'Malposition of the testicles'}, {'ID': 232, 'Name': 'Marked veins'}, # {'ID': 235, 'Name': 'Memory gap'}, {'ID': 112, 'Name': 'Menstruation disorder'}, # {'ID': 123, 'Name': 'Missed period'}, {'ID': 215, 'Name': 'Moist and softened skin'}, # {'ID': 85, 'Name': 'Mood swings'}, {'ID': 983, 'Name': 'Morning stiffness'}, # {'ID': 135, 'Name': 'Mouth pain'}, {'ID': 97, 'Name': 'Mouth ulcers'}, # {'ID': 177, 'Name': 'Muscle pain'}, {'ID': 119, 'Name': 'Muscle stiffness'}, # {'ID': 987, 'Name': 'Muscle weakness'}, {'ID': 252, 'Name': 'Muscular atrophy in the leg'}, # {'ID': 202, 'Name': 'Muscular atrophy of the arm'}, {'ID': 168, 'Name': 'Muscular weakness in the arm'}, # {'ID': 253, 'Name': 'Muscular weakness in the leg'}, {'ID': 44, 'Name': 'Nausea'}, # {'ID': 136, 'Name': 'Neck pain'}, {'ID': 234, 'Name': 'Neck stiffness'}, # {'ID': 114, 'Name': 'Nervousness'}, {'ID': 133, 'Name': 'Night cough'}, # {'ID': 1004, 'Name': 'Night sweats'}, {'ID': 63, 'Name': 'Non-healing skin wound'}, # {'ID': 38, 'Name': 'Nosebleed'}, {'ID': 221, 'Name': 'Numbness in the arm'}, # {'ID': 254, 'Name': 'Numbness in the leg'}, {'ID': 200, 'Name': 'Numbness of the hands'}, # {'ID': 137, 'Name': 'Oversensitivity to light'}, {'ID': 157, 'Name': 'Overweight'}, # {'ID': 155, 'Name': 'Pain in the bones'}, {'ID': 142, 'Name': 'Pain in the calves'}, # {'ID': 12, 'Name': 'Pain in the limbs'}, {'ID': 990, 'Name': 'Pain of the anus'}, # {'ID': 203, 'Name': 'Pain on swallowing'}, {'ID': 251, 'Name': 'Pain radiating to the arm'}, # {'ID': 103, 'Name': 'Pain radiating to the leg'}, {'ID': 286, 'Name': 'Pain when chewing'}, # {'ID': 189, 'Name': 'Painful defecation'}, {'ID': 109, 'Name': 'Painful urination'}, # {'ID': 150, 'Name': 'Pallor'}, {'ID': 37, 'Name': 'Palpitations'}, {'ID': 140, 'Name': 'Paralysis'}, # {'ID': 118, 'Name': 'Physical inactivity'}, # {'ID': 129, 'Name': 'Problems with the sense of touch in the face'}, # {'ID': 130, 'Name': 'Problems with the sense of touch in the feet'}, # {'ID': 258, 'Name': 'Protrusion of the eyes'}, # {'ID': 172, 'Name': 'Purulent discharge from the urethra'}, # {'ID': 173, 'Name': 'Purulent discharge from the vagina'}, {'ID': 191, 'Name': 'Rebound tenderness'}, # {'ID': 54, 'Name': 'Reduced appetite'}, {'ID': 78, 'Name': 'Ringing in the ear'}, # {'ID': 14, 'Name': 'Runny nose'}, {'ID': 975, 'Name': 'Sadness'}, {'ID': 269, 'Name': 'Scalp redness'}, # {'ID': 1001, 'Name': 'Scar'}, {'ID': 60, 'Name': 'Sensitivity to cold'}, # {'ID': 69, 'Name': 'Sensitivity to glare'}, {'ID': 102, 'Name': 'Sensitivity to noise'}, # {'ID': 264, 'Name': 'Shiny red tongue'}, {'ID': 29, 'Name': 'Shortness of breath'}, # {'ID': 183, 'Name': 'Side pain'}, {'ID': 26, 'Name': 'Skin lesion'}, {'ID': 25, 'Name': 'Skin nodules'}, # {'ID': 124, 'Name': 'Skin rash'}, {'ID': 61, 'Name': 'Skin redness'}, # {'ID': 217, 'Name': 'Skin thickening'}, {'ID': 34, 'Name': 'Skin wheal'}, # {'ID': 241, 'Name': 'Sleepiness with spontaneous falling asleep'}, {'ID': 52, 'Name': 'Sleeplessness'}, # {'ID': 95, 'Name': 'Sneezing'}, {'ID': 13, 'Name': 'Sore throat'}, {'ID': 64, 'Name': 'Sputum'}, # {'ID': 179, 'Name': 'Stomach burning'}, {'ID': 185, 'Name': 'Stress-related leg pain'}, # {'ID': 28, 'Name': 'Stuffy nose'}, {'ID': 138, 'Name': 'Sweating'}, # {'ID': 236, 'Name': 'Swelling in the genital area'}, {'ID': 267, 'Name': 'Swelling of the testicles'}, # {'ID': 248, 'Name': 'Swollen glands in the armpit'}, {'ID': 249, 'Name': 'Swollen glands in the groin'}, # {'ID': 169, 'Name': 'Swollen glands in the neck'}, {'ID': 211, 'Name': 'Tears'}, # {'ID': 222, 'Name': 'Testicular pain'}, {'ID': 243, 'Name': 'Tic'}, {'ID': 201, 'Name': 'Tingling'}, # {'ID': 16, 'Name': 'Tiredness'}, {'ID': 997, 'Name': 'Toe deformity'}, # {'ID': 1003, 'Name': 'Toe swelling'}, {'ID': 980, 'Name': 'Tongue burning'}, # {'ID': 977, 'Name': 'Tongue swelling'}, {'ID': 115, 'Name': 'Tremor at rest'}, # {'ID': 132, 'Name': 'Tremor on movement'}, {'ID': 988, 'Name': 'Trouble understanding speech'}, # {'ID': 144, 'Name': 'Unconsciousness, short'}, {'ID': 265, 'Name': 'Uncontrolled defecation'}, # {'ID': 116, 'Name': 'Underweight'}, {'ID': 160, 'Name': 'Urge to urinate'}, # {'ID': 161, 'Name': 'Urination during the night'}, {'ID': 68, 'Name': 'Vision impairment'}, # {'ID': 213, 'Name': 'Vision impairment for far objects'}, # {'ID': 166, 'Name': 'Vision impairment for near objects'}, {'ID': 66, 'Name': 'Visual field loss'}, # {'ID': 101, 'Name': 'Vomiting'}, {'ID': 181, 'Name': 'Vomiting blood'}, # {'ID': 972, 'Name': 'Weakness or numbness on right or left side of body'}, # {'ID': 23, 'Name': 'Weight gain'}, {'ID': 22, 'Name': 'Weight loss'}, {'ID': 30, 'Name': 'Wheezing'}, # {'ID': 187, 'Name': 'Wound'}, {'ID': 105, 'Name': 'Yellow colored skin'}, # {'ID': 106, 'Name': 'Yellowish discoloration of the white part of the eye'}] # s_list_with_all_data = [ # { # "id": "s_1558", # "name": "Abdominal guarding", # "common_name": "Abdominal guarding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_299", # "name": "Abdominal mass", # "common_name": "Lump in abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1293", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1293", # "name": "Abdominal mass, after pregnancy or the removal of a molar pregnancy", # "common_name": "Abdominal mass, after pregnancy or the removal of a molar pregnancy", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_299", # "parent_relation": "base" # }, # { # "id": "s_13", # "name": "Abdominal pain", # "common_name": "Stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1557", # "parent_relation": "location" # }, # { # "id": "s_1387", # "parent_relation": "location" # }, # { # "id": "s_1729", # "parent_relation": "location" # }, # { # "id": "s_1591", # "parent_relation": "location" # }, # { # "id": "s_1598", # "parent_relation": "location" # }, # { # "id": "s_1532", # "parent_relation": "location" # }, # { # "id": "s_1531", # "parent_relation": "location" # }, # { # "id": "s_1528", # "parent_relation": "location" # }, # { # "id": "s_1207", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_15", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1202", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_14", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_16", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_17", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1845", # "parent_relation": "radiation" # }, # { # "id": "s_1846", # "parent_relation": "radiation" # }, # { # "id": "s_471", # "parent_relation": "radiation" # }, # { # "id": "s_1802", # "parent_relation": "character" # }, # { # "id": "s_1848", # "parent_relation": "character" # }, # { # "id": "s_1860", # "parent_relation": "character" # }, # { # "id": "s_1369", # "parent_relation": "character" # }, # { # "id": "s_1844", # "parent_relation": "duration" # }, # { # "id": "s_1852", # "parent_relation": "duration" # }, # { # "id": "s_1853", # "parent_relation": "duration" # }, # { # "id": "s_1840", # "parent_relation": "duration" # }, # { # "id": "s_1842", # "parent_relation": "duration" # }, # { # "id": "s_1847", # "parent_relation": "duration" # }, # { # "id": "s_1843", # "parent_relation": "duration" # }, # { # "id": "s_1782", # "parent_relation": "severity" # }, # { # "id": "s_1783", # "parent_relation": "severity" # }, # { # "id": "s_1195", # "parent_relation": "severity" # }, # { # "id": "s_57", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1802", # "name": "Abdominal pain, burning or gnawing", # "common_name": "Burning or gnawing stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "character" # }, # { # "id": "s_1848", # "name": "Abdominal pain, colicky", # "common_name": "Colic stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "character" # }, # { # "id": "s_1860", # "name": "Abdominal pain, crampy", # "common_name": "Crampy stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "character" # }, # { # "id": "s_1557", # "name": "Abdominal pain, diffuse", # "common_name": "Widespread stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1387", # "name": "Abdominal pain, epigastric", # "common_name": "Upper central stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1207", # "name": "Abdominal pain, exacerbating after caffeine consumption", # "common_name": "Stomach pain worsening after caffeine consumption", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_15", # "name": "Abdominal pain, exacerbating during coughing or movement", # "common_name": "Stomach pain worsens when coughing or moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1202", # "name": "Abdominal pain, exacerbating during deep breath", # "common_name": "Stomach pain worsens with deep breath", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_14", # "name": "Abdominal pain, exacerbating on an empty stomach", # "common_name": "Stomach pain on empty stomach", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1844", # "name": "Abdominal pain, gradual onset", # "common_name": "Slow and gradual stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_1852", # "name": "Abdominal pain, lasting 2 to 7 days", # "common_name": "Stomach pain, lasting 2 to 7 days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_1853", # "name": "Abdominal pain, lasting 8 to 14 days", # "common_name": "Stomach pain, lasting 8 to 14 days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_1840", # "name": "Abdominal pain, lasting less than two days", # "common_name": "Stomach pain, lasting less than two days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_1842", # "name": "Abdominal pain, lasting more than two weeks", # "common_name": "Stomach pain, lasting more than two weeks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_1729", # "name": "Abdominal pain, left lower quadrant", # "common_name": "Pain in left lower part of stomach", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1854", # "name": "Abdominal pain, left side", # "common_name": "Pain in left part of abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1591", # "name": "Abdominal pain, left upper quadrant", # "common_name": "Upper left side stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1851", # "name": "Abdominal pain, migrating to the right lower quadrant", # "common_name": "Abdominal pain, migrating to the right lower quadrant", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1531", # "parent_relation": "character" # }, # { # "id": "s_1782", # "name": "Abdominal pain, mild", # "common_name": "Mild stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "severity" # }, # { # "id": "s_1783", # "name": "Abdominal pain, moderate", # "common_name": "Moderate stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "severity" # }, # { # "id": "s_1598", # "name": "Abdominal pain, pelvic", # "common_name": "Lower stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1532", # "name": "Abdominal pain, periumbilical", # "common_name": "Pain in the center of stomach", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_16", # "name": "Abdominal pain, postprandial", # "common_name": "Stomach pain after eating", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_17", # "name": "Abdominal pain, premenstrual", # "common_name": "Cramps before period", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1845", # "name": "Abdominal pain, radiating to left shoulder or shoulder blade", # "common_name": "Belly pain spreading to the left shoulder or shoulder blade", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "radiation" # }, # { # "id": "s_1846", # "name": "Abdominal pain, radiating to lower or middle part of back", # "common_name": "Belly pain spreading to the lower or middle back", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "radiation" # }, # { # "id": "s_471", # "name": "Abdominal pain, radiating to right shoulder or shoulder blade", # "common_name": "Belly pain spreading to the right shoulder area", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "radiation" # }, # { # "id": "s_1847", # "name": "Abdominal pain, recurrent", # "common_name": "Recurrent stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_57", # "name": "Abdominal pain, reduced by defecation or relieving flatulence", # "common_name": "Stomach pain decreases after bowel movement or passing gas", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_1531", # "name": "Abdominal pain, right lower quadrant", # "common_name": "Pain in right lower part of your stomach", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1851", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1855", # "name": "Abdominal pain, right side", # "common_name": "Pain in right part of abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1528", # "name": "Abdominal pain, right upper quadrant", # "common_name": "Upper right side stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_567", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "location" # }, # { # "id": "s_1195", # "name": "Abdominal pain, severe", # "common_name": "Intense stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1929", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "severity" # }, # { # "id": "s_1369", # "name": "Abdominal pain, sharp and stabbing", # "common_name": "Sharp and stabbing stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "character" # }, # { # "id": "s_1843", # "name": "Abdominal pain, sudden onset", # "common_name": "Sudden stomach ache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_13", # "parent_relation": "duration" # }, # { # "id": "s_1929", # "name": "Abdominal pain, unbearable", # "common_name": "Unbearable stomach pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1195", # "parent_relation": "severity" # }, # { # "id": "s_1514", # "name": "Abdominal tenderness", # "common_name": "Pain when pressing abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1589", # "parent_relation": "location" # }, # { # "id": "s_1392", # "parent_relation": "location" # }, # { # "id": "s_1400", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1589", # "name": "Abdominal tenderness, left upper quadrant", # "common_name": "Pain when pressing left upper part of abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1514", # "parent_relation": "location" # }, # { # "id": "s_1392", # "name": "Abdominal tenderness, right upper quadrant", # "common_name": "Pain when pressing abdomen in right upper part", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1514", # "parent_relation": "location" # }, # { # "id": "s_1400", # "name": "Abdominal tenderness, suprapubic", # "common_name": "Pain when pressing stomach in lower part", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1514", # "parent_relation": "location" # }, # { # "id": "s_1419", # "name": "Abnormal foveal avascular zone", # "common_name": "Abnormal foveal avascular zone", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_328", # "name": "Abnormal vaginal discharge", # "common_name": "Abnormal vaginal discharge", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_366", # "parent_relation": "character" # }, # { # "id": "s_1294", # "parent_relation": "character" # }, # { # "id": "s_64", # "parent_relation": "character" # }, # { # "id": "s_1569", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_598", # "name": "Abscess", # "common_name": "Reddened, swollen, and painful skin change", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1072", # "name": "Absence of deep reflexes", # "common_name": "Absence of deep reflexes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1073", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1502", # "name": "Achilles tendon hyperreflexia", # "common_name": "Achilles tendon hyperreflexia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_878", # "parent_relation": "location" # }, # { # "id": "s_2121", # "name": "Acid reflux", # "common_name": "Acidic taste in mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_330", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1973", # "name": "Active wound bleeding", # "common_name": "Active wound bleeding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1980", # "parent_relation": "character" # }, # { # "id": "s_3", # "name": "Activity related to sex despite negative consequences", # "common_name": "Activity related to sex despite negative consequences", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1111", # "name": "Adenoid face", # "common_name": "Adenoid face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_145", # "name": "Agitation", # "common_name": "Agitation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_833", # "name": "Agnosia", # "common_name": "Inability to recognize objects, people, sounds, shapes, or smells", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1028", # "parent_relation": "base" # }, # { # "id": "s_1034", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_884", # "name": "Agoraphobia", # "common_name": "Fear of certain environments where escape or getting help might be difficult", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1012", # "name": "Agraphia", # "common_name": "Loss of writing ability", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_817", # "name": "Alcohol craving", # "common_name": "Constant urge to drink alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_588", # "name": "Alcohol tolerance", # "common_name": "Need of higher alcohol quantities to get drunk", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_818", # "name": "Alcohol withdrawal syndrome", # "common_name": "Ailments occurring when reducing alcohol consumption", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1019", # "name": "Allelomimetic behavior, allomimetic behavior", # "common_name": "Allelomimetic behavior, allomimetic behavior", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1272", # "name": "Allen-Cleckley sign", # "common_name": "Allen-Cleckley sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_837", # "name": "Alogia", # "common_name": "Poverty of speech", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_1728", # "name": "Altered defecation rhythm", # "common_name": "Change in bowel habits", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1401", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1457", # "name": "Amenorrhea", # "common_name": "Absence of menstrual period", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1370", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1458", # "name": "Amenorrhea, primary", # "common_name": "Absence of first menstrual period at age 16", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1370", # "name": "Amenorrhea, secondary, for at least 12 months", # "common_name": "Lack of menstrual period for at least 12 months", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1457", # "parent_relation": "duration" # }, # { # "id": "s_1032", # "name": "Amusia", # "common_name": "Inability to produce or recognize musical sounds", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_147", # "name": "Anemia", # "common_name": "Anemia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_608", # "name": "Angular cheilitis", # "common_name": "Cracked corners of lips", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1808", # "parent_relation": "location" # }, # { # "id": "s_508", # "name": "Anhedonia", # "common_name": "Inability to enjoy life", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1123", # "name": "Anhidrosis", # "common_name": "Lack of sweating", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_669", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_669", # "name": "Anhidrosis, face, unilateral", # "common_name": "Lack of sweating on one side of face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1123", # "parent_relation": "location" # }, # { # "id": "s_2170", # "name": "Anicteric presentation", # "common_name": "Anicteric presentation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_497", # "name": "Anisocoria", # "common_name": "Asymmetric pupils", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1647", # "name": "Annular skin lesions", # "common_name": "Ring-shaped skin changes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_202", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1030", # "name": "Anomic aphasia", # "common_name": "Inability to find words", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_969", # "parent_relation": "character" # }, # { # "id": "s_436", # "name": "Anorectal pain", # "common_name": "Anorectal pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_120", # "name": "Anxiety", # "common_name": "Anxiety", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_582", # "parent_relation": "character" # }, # { # "id": "s_516", # "parent_relation": "character" # }, # { # "id": "s_1087", # "parent_relation": "character" # }, # { # "id": "s_583", # "parent_relation": "character" # }, # { # "id": "s_915", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_582", # "name": "Anxiety attack", # "common_name": "Anxiety attack", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_120", # "parent_relation": "character" # }, # { # "id": "s_4", # "name": "Apathy", # "common_name": "Loss of interest in everyday matters", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_969", # "name": "Aphasia", # "common_name": "Inability to comprehend and formulate speech", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_1030", # "parent_relation": "character" # }, # { # "id": "s_1029", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_477", # "name": "Aphonia", # "common_name": "Loss of voice", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1269", # "name": "Aponeurotic reflex", # "common_name": "Aponeurotic reflex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_6", # "name": "Appetite for salty foods", # "common_name": "Appetite for salty foods", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1010", # "name": "Apraxia", # "common_name": "Apraxia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_1011", # "parent_relation": "location" # }, # { # "id": "s_1013", # "parent_relation": "location" # }, # { # "id": "s_1014", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1292", # "name": "Arthropathy", # "common_name": "Diseases of joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1116", # "name": "Ascites", # "common_name": "Ascites", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_380", # "name": "Asymmetry of a skin mole or birthmark", # "common_name": "Asymmetry of a skin mole or birthmark", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_383", # "parent_relation": "character" # }, # { # "id": "s_651", # "name": "Ataxia", # "common_name": "Problems with movements coordination", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1120", # "name": "Atonic bladder", # "common_name": "Atonic bladder", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1117", # "name": "Atrophy or diminishing of both testicles", # "common_name": "Diminished testicles", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1028", # "name": "Auditory verbal agnosia", # "common_name": "Auditory verbal agnosia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_833", # "parent_relation": "base" # }, # { # "id": "s_857", # "name": "Auscultative fine crackles over the thorax", # "common_name": "Auscultative fine crackles over the thorax", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1316", # "name": "Auscultative rhonchi over the thorax", # "common_name": "Auscultative rhonchi over the thorax", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_856", # "name": "Auscultative wheezes over the thorax", # "common_name": "Auscultative wheezes over the thorax", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_710", # "name": "Avoiding actions, places, or people that bring back memories of trauma", # "common_name": "Avoiding actions, places, or people that bring back memories of trauma", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_718", # "name": "Avoiding eating and drinking in public", # "common_name": "Avoiding eating and drinking in public", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_719", # "name": "Avoiding eating in someone's presence", # "common_name": "Avoiding eating in someone's presence", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_717", # "name": "Avoiding public appearances", # "common_name": "Avoiding public appearances", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_720", # "name": "Avoiding talking to authority figures", # "common_name": "Avoiding talking to authority figures", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_709", # "name": "Avoiding thoughts, feelings, conversations related to traumatic experience", # "common_name": "Avoiding thoughts, feelings, conversations related to traumatic experience", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1322", # "name": "Axillary or inguinal freckles", # "common_name": "Freckles under the armpits and groin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1023", # "name": "Babinski sign", # "common_name": "Babinski sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1190", # "name": "Back pain", # "common_name": "Back pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_159", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2085", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_53", # "parent_relation": "location" # }, # { # "id": "s_1772", # "parent_relation": "location" # }, # { # "id": "s_1189", # "parent_relation": "character" # }, # { # "id": "s_1205", # "parent_relation": "duration" # }, # { # "id": "s_1198", # "parent_relation": "duration" # }, # { # "id": "s_1192", # "parent_relation": "severity" # }, # { # "id": "s_1206", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_159", # "name": "Back pain, exacerbated by physical exertion", # "common_name": "Back pain worsening after physical exertion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1206", # "name": "Back pain, improves with rest", # "common_name": "Back pain decreases during rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_1205", # "name": "Back pain, lasting several hours", # "common_name": "Back pain lasting several hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "duration" # }, # { # "id": "s_53", # "name": "Back pain, lumbar", # "common_name": "Lower-back pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1339", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_38", # "parent_relation": "radiation" # }, # { # "id": "s_663", # "parent_relation": "radiation" # } # ], # "image_url": "http://static.doktor-medi.pl/images/bol-w-dole-plecow.png", # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "location" # }, # { # "id": "s_1339", # "name": "Back pain, lumbar, exacerbating during the night", # "common_name": "Lower-back pain worsening in the night", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_53", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_38", # "name": "Back pain, lumbar, radiates to back of the thigh", # "common_name": "Back pain radiating through the back of thigh to knee", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_53", # "parent_relation": "radiation" # }, # { # "id": "s_663", # "name": "Back pain, lumbar, radiating to the groin", # "common_name": "Lower-back pain radiating to the groin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_53", # "parent_relation": "radiation" # }, # { # "id": "s_1189", # "name": "Back pain, recurrent", # "common_name": "Back pain that comes and goes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "character" # }, # { # "id": "s_1192", # "name": "Back pain, severe", # "common_name": "Severe back pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "severity" # }, # { # "id": "s_1198", # "name": "Back pain, sudden", # "common_name": "Sudden back pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "duration" # }, # { # "id": "s_1772", # "name": "Back pain, thoracic", # "common_name": "Middle- or upper-back pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "location" # }, # { # "id": "s_2085", # "name": "Back pain, worsens on palpation", # "common_name": "Back pain worsens by touching or pressing the sore area", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1190", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_842", # "name": "Behavioral changes, ignoring consequences and social norms", # "common_name": "Behavioral changes, ignoring consequences and social norms", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_348", # "name": "Behavioral changes, personality", # "common_name": "Change in personality", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_561", # "name": "Belching", # "common_name": "Belching", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1073", # "name": "Bilateral absence of Achilles tendon reflex", # "common_name": "Bilateral absence of Achilles tendon reflex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1072", # "parent_relation": "location" # }, # { # "id": "s_1011", # "name": "Bilateral limb apraxia", # "common_name": "Bilateral limb apraxia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1010", # "parent_relation": "location" # }, # { # "id": "s_1291", # "name": "Bilateral muscle paralysis", # "common_name": "Bilateral muscle paralysis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1257", # "name": "Bing sign", # "common_name": "Bing sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_137", # "name": "Binge-eating attacks", # "common_name": "Binge-eating attacks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_568", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_769", # "name": "Bizarre delusion", # "common_name": "Bizarre delusion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_71", # "name": "Black stools", # "common_name": "Black stools", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_435", # "name": "Bladder not emptying completely", # "common_name": "Bladder not emptying completely", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1119", # "name": "Bladder sphincter dysfunction", # "common_name": "Bladder sphincter dysfunction", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_152", # "name": "Bleeding after intercourse", # "common_name": "Bleeding after intercourse", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_115", # "name": "Bleeding from anus", # "common_name": "Bleeding from anus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_111", # "name": "Bleeding gums", # "common_name": "Bleeding gums", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1386", # "name": "Bleeding into muscles", # "common_name": "Bleeding into muscles", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_192", # "name": "Blepharoptosis", # "common_name": "Drooping eyelids", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1934", # "name": "Blindness", # "common_name": "Complete vision loss", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "severity" # }, # { # "id": "s_1807", # "name": "Blisters", # "common_name": "Blisters on the skin or on the mucous membrane", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1318", # "parent_relation": "location" # }, # { # "id": "s_1803", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "base" # }, # { # "id": "s_309", # "name": "Bloating", # "common_name": "Bloating", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_112", # "name": "Blood in stool", # "common_name": "Blood in stool", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_113", # "name": "Blood in urine", # "common_name": "Blood in urine", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_771", # "name": "Blunted affect", # "common_name": "Blunted affect", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1835", # "name": "Body aches", # "common_name": "Body aches", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1224", # "name": "Bone deformation", # "common_name": "Bone deformation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_612", # "name": "Bone pain", # "common_name": "Bone pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2070", # "parent_relation": "duration" # }, # { # "id": "s_2071", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2070", # "name": "Bone pain, lasting less than a week", # "common_name": "Bone pain lasting less than a week", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_612", # "parent_relation": "duration" # }, # { # "id": "s_2071", # "name": "Bone pain, lasting longer than a week", # "common_name": "Bone pain lasting longer than a week", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_612", # "parent_relation": "duration" # }, # { # "id": "s_641", # "name": "Bowel incontinence", # "common_name": "Loss of bowel control", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1553", # "name": "Bowel sounds, decreased", # "common_name": "Decreased bowel sounds", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1552", # "name": "Bowel sounds, hyperactive, high-pitched", # "common_name": "Excessive bowel sounds", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_534", # "name": "Bradycardia", # "common_name": "Slow heart rate", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1480", # "name": "Breast tenderness", # "common_name": "Breast tenderness", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_609", # "name": "Breast tightness or pain", # "common_name": "Breast tightness or pain", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1947", # "name": "Broken bone", # "common_name": "Broken bone", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1671", # "name": "Broken hair", # "common_name": "Broken hair", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_121", # "parent_relation": "character" # }, # { # "id": "s_1310", # "name": "Brown nail discoloration", # "common_name": "Brown nail discoloration", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1690", # "name": "Brudzinski sign", # "common_name": "Brudzinski sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1960", # "name": "Bruise after trauma", # "common_name": "Bruise after trauma", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1013", # "name": "Buccofacial or orofacial apraxia", # "common_name": "Buccofacial or orofacial apraxia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1010", # "parent_relation": "location" # }, # { # "id": "s_1803", # "name": "Bulla", # "common_name": "Large blisters with diameter equal or greater than 5 mm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1807", # "parent_relation": "character" # }, # { # "id": "s_2040", # "name": "Burn involving face, hands, feet, genitalia, or major joints", # "common_name": "Burn involving face, hands, feet, genitalia, or major joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1165", # "name": "Burning skin", # "common_name": "Burning skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1684", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1684", # "name": "Burning skin, face", # "common_name": "Burning skin on face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1165", # "parent_relation": "location" # }, # { # "id": "s_200", # "name": "Burning tongue", # "common_name": "Burning tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1918", # "name": "Buttocks pain", # "common_name": "Buttocks pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1330", # "name": "Café au lait macules", # "common_name": "At least six light brown marks on skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1168", # "name": "Calcification of the tympanic membrane", # "common_name": "Calcification of the tympanic membrane", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_117", # "name": "Calf muscle spasms", # "common_name": "Cramps in calves", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_503", # "parent_relation": "location" # }, # { # "id": "s_1720", # "name": "Cardiac murmurs", # "common_name": "Cardiac murmurs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_811", # "name": "Cardiomegaly", # "common_name": "Heart enlargement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1576", # "name": "Carotid bruit", # "common_name": "Cervical artery murmur", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_589", # "name": "Ceasing or limiting alcohol consumption", # "common_name": "Ceasing or limiting alcohol consumption", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_198", # "parent_relation": "severity" # }, # { # "id": "s_996", # "name": "Cervical dystonia", # "common_name": "Cervical dystonia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1258", # "name": "Chaddock sign", # "common_name": "Chaddock sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_585", # "name": "Change in color of a skin mole or birthmark", # "common_name": "Change in color of a skin mole or birthmark", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_383", # "parent_relation": "character" # }, # { # "id": "s_346", # "name": "Change in color of a tooth", # "common_name": "Change in color of a tooth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_345", # "name": "Change in handwriting", # "common_name": "Change in handwriting", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_584", # "name": "Change in shape of a skin mole or birthmark", # "common_name": "Change in shape of a skin mole or birthmark", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_383", # "parent_relation": "character" # }, # { # "id": "s_1989", # "name": "Chemical or electrical burn", # "common_name": "Chemical or electrical burn", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1091", # "name": "Chemosis", # "common_name": "Chemosis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_50", # "name": "Chest pain", # "common_name": "Chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_35", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2051", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1763", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2006", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_30", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1178", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_37", # "parent_relation": "radiation" # }, # { # "id": "s_2074", # "parent_relation": "radiation" # }, # { # "id": "s_36", # "parent_relation": "radiation" # }, # { # "id": "s_1509", # "parent_relation": "location" # }, # { # "id": "s_2096", # "parent_relation": "character" # }, # { # "id": "s_31", # "parent_relation": "character" # }, # { # "id": "s_51", # "parent_relation": "character" # }, # { # "id": "s_1925", # "parent_relation": "character" # }, # { # "id": "s_1952", # "parent_relation": "character" # }, # { # "id": "s_1601", # "parent_relation": "character" # }, # { # "id": "s_2019", # "parent_relation": "duration" # }, # { # "id": "s_2018", # "parent_relation": "duration" # }, # { # "id": "s_2022", # "parent_relation": "duration" # }, # { # "id": "s_1200", # "parent_relation": "duration" # }, # { # "id": "s_1197", # "parent_relation": "severity" # }, # { # "id": "s_48", # "parent_relation": "diminishing_factor" # } # ], # "image_url": "http://static.doktor-medi.pl/images/bol-w-klatce.png", # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2096", # "name": "Chest pain, burning", # "common_name": "Burning chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "character" # }, # { # "id": "s_31", # "name": "Chest pain, continues after rest", # "common_name": "Chest pain continuing after rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "character" # }, # { # "id": "s_51", # "name": "Chest pain, diffuse", # "common_name": "Widespread chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "character" # }, # { # "id": "s_35", # "name": "Chest pain, during exertion", # "common_name": "Chest pain on exertion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2051", # "name": "Chest pain, exacerbated by chest wall movement", # "common_name": "Chest pain worsening during chest wall movement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1763", # "name": "Chest pain, exacerbated by stress", # "common_name": "Chest pain worsened by stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2006", # "name": "Chest pain, exacerbating when lying down", # "common_name": "Chest pain worsening when lying down", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_30", # "name": "Chest pain, exacerbating with deep breath or cough", # "common_name": "Chest pain worsening with deep breath or cough", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2019", # "name": "Chest pain, lasting between 30 minutes and 8 hours", # "common_name": "Chest pain lasting between 30 minutes and 8 hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "duration" # }, # { # "id": "s_2018", # "name": "Chest pain, lasting less than 30 minutes", # "common_name": "Chest pain lasting less than 30 minutes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "duration" # }, # { # "id": "s_2022", # "name": "Chest pain, lasting over 8 hours", # "common_name": "Chest pain lasting over 8 hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "duration" # }, # { # "id": "s_1925", # "name": "Chest pain, pressure", # "common_name": "Pressing chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "character" # }, # { # "id": "s_37", # "name": "Chest pain, radiating between shoulder blades", # "common_name": "Chest pain radiating between shoulder blades", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-miedzy-lopatkami.png", # "image_source": null, # "parent_id": "s_50", # "parent_relation": "radiation" # }, # { # "id": "s_2074", # "name": "Chest pain, radiating to left upper limb", # "common_name": "Chest pain, radiating to left upper limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "radiation" # }, # { # "id": "s_36", # "name": "Chest pain, radiating to neck", # "common_name": "Chest pain radiating to neck", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-promieniujacy-od-klatki-do-barku.png", # "image_source": null, # "parent_id": "s_50", # "parent_relation": "radiation" # }, # { # "id": "s_1952", # "name": "Chest pain, recurrent", # "common_name": "Recurrent chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "character" # }, # { # "id": "s_1197", # "name": "Chest pain, severe", # "common_name": "Severe chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "severity" # }, # { # "id": "s_1601", # "name": "Chest pain, stabbing", # "common_name": "Stabbing chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "character" # }, # { # "id": "s_48", # "name": "Chest pain, subsides during rest", # "common_name": "Chest pain subsiding during rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_1509", # "name": "Chest pain, substernal", # "common_name": "Chest pain behind breastbone", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "location" # }, # { # "id": "s_1200", # "name": "Chest pain, sudden", # "common_name": "Sudden chest pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "duration" # }, # { # "id": "s_1178", # "name": "Chest pain, worsens on palpation", # "common_name": "Chest pain worsening when touching or pressing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1580", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_50", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1580", # "name": "Chest pain, worsens on palpation of costochondral joints", # "common_name": "Chest pain worsening on palpation of costochondral joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1178", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1546", # "name": "Cheyne-Stokes respiration", # "common_name": "Cheyne-Stokes respiration", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_81", # "name": "Chills", # "common_name": "Chills", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1456", # "name": "Chorea", # "common_name": "Chorea", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_867", # "name": "Chvostek sign", # "common_name": "Chvostek sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_196", # "name": "Cigarette smoking during illness", # "common_name": "Cigarette smoking during illness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_195", # "parent_relation": "character" # }, # { # "id": "s_1281", # "name": "Clasp-knife spasticity", # "common_name": "Clasp-knife spasticity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_571", # "parent_relation": "character" # }, # { # "id": "s_734", # "name": "Claudication in upper leg", # "common_name": "Acute thigh or buttock pain appearing during exertion and relieving after short rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1094", # "name": "Clearing the throat", # "common_name": "Hawking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_429", # "name": "Clicking sounds in the jaw joint when opening or closing the mouth", # "common_name": "Clicking sounds in the jaw joint when opening or closing the mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_276", # "name": "Clogged ear", # "common_name": "Clogged ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_288", # "name": "Close family or friends pointing out excessive drinking", # "common_name": "Close family or friends pointing out excessive drinking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_869", # "name": "Club-foot", # "common_name": "Club-foot", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_610", # "name": "Coated tonsils", # "common_name": "White spots on tonsils", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1184", # "name": "Coating on tongue", # "common_name": "Coating on tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2108", # "name": "Cognitive disturbances", # "common_name": "Cognitive disturbances", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_833", # "parent_relation": "base" # }, # { # "id": "s_837", # "parent_relation": "base" # }, # { # "id": "s_1032", # "parent_relation": "base" # }, # { # "id": "s_969", # "parent_relation": "base" # }, # { # "id": "s_269", # "parent_relation": "base" # }, # { # "id": "s_146", # "parent_relation": "base" # }, # { # "id": "s_631", # "parent_relation": "base" # }, # { # "id": "s_316", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1283", # "name": "Cogwheel muscle rigidity", # "common_name": "Cogwheel muscle rigidity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_571", # "parent_relation": "character" # }, # { # "id": "s_1926", # "name": "Cold and clammy skin", # "common_name": "Cold and clammy skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_408", # "name": "Cold feet and toes", # "common_name": "Cold feet and toes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_556", # "name": "Cold hands or fingers", # "common_name": "Cold hands or fingers", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_118", # "name": "Cold sensitivity", # "common_name": "Cold sensitivity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1328", # "name": "Color vision deficiency", # "common_name": "Color vision deficiency", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "character" # }, # { # "id": "s_2109", # "name": "Coma", # "common_name": "Coma", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_303", # "name": "Compulsive behavior", # "common_name": "Performing certain actions repeatedly to ease anxiety", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_831", # "name": "Confabulation", # "common_name": "Confabulation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1345", # "name": "Confusion (trauma related)", # "common_name": "Confusion after injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1212", # "name": "Conjunctival pallor", # "common_name": "Pale conjunctiva", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1214", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1214", # "name": "Conjunctival pallor, sudden", # "common_name": "Sudden paleness of conjunctivae", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1212", # "parent_relation": "duration" # }, # { # "id": "s_2034", # "name": "Consciousness disturbances", # "common_name": "Confusion or disorientation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2072", # "parent_relation": "duration" # }, # { # "id": "s_2073", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2072", # "name": "Consciousness disturbances, acute", # "common_name": "Disorientation or confusion lasting several hours or days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2034", # "parent_relation": "duration" # }, # { # "id": "s_2073", # "name": "Consciousness disturbances, chronic", # "common_name": "Disorientation or confusion lasting more than a few days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2034", # "parent_relation": "duration" # }, # { # "id": "s_181", # "name": "Constant need for sex", # "common_name": "Constant need for sex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_329", # "name": "Constipation", # "common_name": "Constipation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2162", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2162", # "name": "Constipation, chronic", # "common_name": "Chronic constipation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_329", # "parent_relation": "duration" # }, # { # "id": "s_2164", # "name": "Consumption of contaminated food or drink", # "common_name": "Spoiled food or drink consumption", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_635", # "name": "Contentiousness", # "common_name": "Contentiousness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1228", # "name": "Convergent strabismus", # "common_name": "Crossed eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1234", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1676", # "name": "Corn or callus", # "common_name": "Corn or callus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "base" # }, # { # "id": "s_1268", # "name": "Corneal reflex weak or absent", # "common_name": "Corneal reflex weak or absent", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1273", # "name": "Cornell's sign", # "common_name": "Cornell's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_102", # "name": "Cough", # "common_name": "Cough", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_105", # "parent_relation": "character" # }, # { # "id": "s_1985", # "parent_relation": "character" # }, # { # "id": "s_104", # "parent_relation": "character" # }, # { # "id": "s_103", # "parent_relation": "duration" # }, # { # "id": "s_106", # "parent_relation": "duration" # }, # { # "id": "s_1858", # "parent_relation": "duration" # }, # { # "id": "s_1924", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_105", # "name": "Cough, dry", # "common_name": "Dry cough", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "character" # }, # { # "id": "s_103", # "name": "Cough, lasting less than three weeks", # "common_name": "Cough lasting less than three weeks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "duration" # }, # { # "id": "s_106", # "name": "Cough, lasting more than eight weeks", # "common_name": "Cough lasting more than eight weeks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "duration" # }, # { # "id": "s_1858", # "name": "Cough, lasting three to eight weeks", # "common_name": "Cough, lasting three to eight weeks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "duration" # }, # { # "id": "s_1985", # "name": "Cough, nocturnal", # "common_name": "Nighttime cough", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "character" # }, # { # "id": "s_1924", # "name": "Cough, paroxysmal", # "common_name": "Severe and sudden coughing attacks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "severity" # }, # { # "id": "s_104", # "name": "Cough, productive", # "common_name": "Coughing up phlegm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_662", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_670", # "parent_relation": "character" # }, # { # "id": "s_526", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_102", # "parent_relation": "character" # }, # { # "id": "s_662", # "name": "Cough, productive in the morning", # "common_name": "Coughing up phlegm in the morning", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_104", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_670", # "name": "Cough, productive with pink, frothy sputum", # "common_name": "Coughing up pink phlegm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_104", # "parent_relation": "character" # }, # { # "id": "s_526", # "name": "Cough, productive with yellow or green sputum", # "common_name": "Coughing up thick yellow or green phlegm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_104", # "parent_relation": "character" # }, # { # "id": "s_270", # "name": "Creaking of joint during movement", # "common_name": "Creaking of joint during movement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_242", # "name": "Crowding of teeth", # "common_name": "Crowded teeth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_195", # "name": "Current cigarette smoking", # "common_name": "Current cigarette smoking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_196", # "parent_relation": "character" # }, # { # "id": "s_134", # "parent_relation": "severity" # }, # { # "id": "s_265", # "parent_relation": "severity" # }, # { # "id": "s_327", # "parent_relation": "severity" # }, # { # "id": "s_93", # "parent_relation": "severity" # }, # { # "id": "s_308", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_437", # "name": "Cyanosis", # "common_name": "Bluish-gray colored skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1105", # "name": "Cyanosis under the eyes", # "common_name": "Dark circles under eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_553", # "name": "Cyanosis, fingers", # "common_name": "Pale or grayish-blue fingers", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1750", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1750", # "name": "Cyanosis, fingers, after exposure to stress or cold", # "common_name": "Pale or grayish-blue fingers after exposure to stress or cold", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_553", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1413", # "name": "Cystoid macular edema", # "common_name": "Cystoid macular edema", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1338", # "name": "Damage to 2 separate areas of innervation", # "common_name": "Damage to 2 separate areas of innervation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1555", # "name": "Dance's sign", # "common_name": "Dance's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1616", # "name": "Dandruff", # "common_name": "Dandruff", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1171", # "name": "Darier sign", # "common_name": "Darier sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_611", # "name": "Dark urine", # "common_name": "Dark urine", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1417", # "name": "Dark-red spots in optic disc vessels", # "common_name": "Dark-red spots in optic disc vessels", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_357", # "name": "Decreased breast size", # "common_name": "Decreased breast size", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_208", # "name": "Decreased hearing", # "common_name": "Decreased hearing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1484", # "parent_relation": "character" # }, # { # "id": "s_1538", # "parent_relation": "character" # }, # { # "id": "s_935", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1484", # "name": "Decreased hearing, progressive hearing loss", # "common_name": "Progressive hearing loss without fluctuation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_208", # "parent_relation": "character" # }, # { # "id": "s_1538", # "name": "Decreased hearing, sudden hearing loss", # "common_name": "Sudden hearing loss", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_208", # "parent_relation": "character" # }, # { # "id": "s_935", # "name": "Decreased hearing, variable intensity and duration", # "common_name": "Hearing loss with variable intensity and duration", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_208", # "parent_relation": "character" # }, # { # "id": "s_1693", # "name": "Decreased intensity of breath sounds", # "common_name": "Decreased intensity of breath sounds", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1395", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1395", # "name": "Decreased intensity of breath sounds, right basilar lung zones", # "common_name": "Decreased intensity of breath sounds, right basilar lung zones", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1693", # "parent_relation": "base" # }, # { # "id": "s_236", # "name": "Decreased libido", # "common_name": "Loss of interest in sex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_661", # "name": "Decreased motivation", # "common_name": "Decreased motivation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_634", # "name": "Decreased need for sleep", # "common_name": "Decreased need for sleep", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_319", # "parent_relation": "character" # }, # { # "id": "s_535", # "name": "Decreased pupillary light reflex", # "common_name": "Decreased pupillary light reflex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_697", # "name": "Decreased skin turgor", # "common_name": "Decreased skin elasticity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1277", # "name": "Decreased tongue motility", # "common_name": "Difficulty moving tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_967", # "name": "Decreased visual acuity", # "common_name": "Decreased vision", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "base" # }, # { # "id": "s_97", # "name": "Deep filling of treated tooth", # "common_name": "Deep filling of treated tooth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_652", # "name": "Deep tendon reflexes, decreased", # "common_name": "Decreased deep tendon reflexes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_878", # "name": "Deep tendon reflexes, increased", # "common_name": "Increased deep tendon reflexes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1502", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_108", # "name": "Deepening of periodontal pockets", # "common_name": "Deepened spaces between the gums and the teeth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_422", # "name": "Deepening of voice", # "common_name": "Deepened voice", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_768", # "name": "Delusion of guilt or sin", # "common_name": "Delusion of guilt or sin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_774", # "name": "Delusion of impoverishment", # "common_name": "Delusion of impoverishment", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_2098", # "name": "Delusions", # "common_name": "Delusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_769", # "parent_relation": "base" # }, # { # "id": "s_768", # "parent_relation": "base" # }, # { # "id": "s_774", # "parent_relation": "base" # }, # { # "id": "s_677", # "parent_relation": "base" # }, # { # "id": "s_680", # "parent_relation": "base" # }, # { # "id": "s_675", # "parent_relation": "base" # }, # { # "id": "s_676", # "parent_relation": "base" # }, # { # "id": "s_839", # "parent_relation": "base" # }, # { # "id": "s_679", # "parent_relation": "base" # }, # { # "id": "s_678", # "parent_relation": "base" # }, # { # "id": "s_780", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_677", # "name": "Delusions of grandeur", # "common_name": "Delusions of grandeur", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_680", # "name": "Delusions of influence", # "common_name": "Delusions of influence", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_675", # "name": "Delusions of persecution", # "common_name": "Delusions of persecution", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_676", # "name": "Delusions of reference", # "common_name": "Delusions of reference", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_839", # "name": "Delusions of thought insertion, thought withdrawal, thought broadcasting", # "common_name": "Delusions of thought insertion, thought withdrawal, thought broadcasting", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_1409", # "name": "Demarcation of retinal detachment (pigmented or nonpigmented)", # "common_name": "Demarcation of retinal detachment (pigmented or nonpigmented)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1106", # "name": "Dennie-Morgan fold", # "common_name": "Dennie-Morgan fold", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_203", # "name": "Dental plaque", # "common_name": "Dental plaque", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_169", # "name": "Depressed mood", # "common_name": "Depressed mood", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_835", # "parent_relation": "character" # }, # { # "id": "s_916", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_916", # "name": "Depressed mood, persistent", # "common_name": "Persistent depressed mood", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_169", # "parent_relation": "duration" # }, # { # "id": "s_514", # "name": "Derealization", # "common_name": "Feeling unreal", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_241", # "name": "Dermatological changes", # "common_name": "Skin changes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1171", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1761", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1692", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_402", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_352", # "parent_relation": "location" # }, # { # "id": "s_398", # "parent_relation": "location" # }, # { # "id": "s_483", # "parent_relation": "location" # }, # { # "id": "s_1923", # "parent_relation": "location" # }, # { # "id": "s_2110", # "parent_relation": "location" # }, # { # "id": "s_1982", # "parent_relation": "location" # }, # { # "id": "s_390", # "parent_relation": "location" # }, # { # "id": "s_694", # "parent_relation": "location" # }, # { # "id": "s_1808", # "parent_relation": "location" # }, # { # "id": "s_2111", # "parent_relation": "location" # }, # { # "id": "s_598", # "parent_relation": "character" # }, # { # "id": "s_1647", # "parent_relation": "character" # }, # { # "id": "s_1330", # "parent_relation": "character" # }, # { # "id": "s_245", # "parent_relation": "character" # }, # { # "id": "s_350", # "parent_relation": "character" # }, # { # "id": "s_1680", # "parent_relation": "character" # }, # { # "id": "s_400", # "parent_relation": "character" # }, # { # "id": "s_404", # "parent_relation": "character" # }, # { # "id": "s_1191", # "parent_relation": "character" # }, # { # "id": "s_229", # "parent_relation": "character" # }, # { # "id": "s_180", # "parent_relation": "character" # }, # { # "id": "s_763", # "parent_relation": "character" # }, # { # "id": "s_665", # "parent_relation": "character" # }, # { # "id": "s_594", # "parent_relation": "character" # }, # { # "id": "s_1162", # "parent_relation": "character" # }, # { # "id": "s_388", # "parent_relation": "character" # }, # { # "id": "s_417", # "parent_relation": "character" # }, # { # "id": "s_1301", # "parent_relation": "character" # }, # { # "id": "s_73", # "parent_relation": "character" # }, # { # "id": "s_1544", # "parent_relation": "character" # }, # { # "id": "s_1831", # "parent_relation": "character" # }, # { # "id": "s_1650", # "parent_relation": "character" # }, # { # "id": "s_1943", # "parent_relation": "character" # }, # { # "id": "s_221", # "parent_relation": "character" # }, # { # "id": "s_383", # "parent_relation": "character" # }, # { # "id": "s_545", # "parent_relation": "character" # }, # { # "id": "s_672", # "parent_relation": "character" # }, # { # "id": "s_393", # "parent_relation": "character" # }, # { # "id": "s_1807", # "parent_relation": "base" # }, # { # "id": "s_1676", # "parent_relation": "base" # }, # { # "id": "s_1571", # "parent_relation": "base" # }, # { # "id": "s_1470", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1761", # "name": "Dermatological changes, aggravated by stress", # "common_name": "Skin changes aggravated by stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_352", # "name": "Dermatological changes, at the point of contact with buttons, fasteners, or cosmetics", # "common_name": "Skin changes at the point of contact with buttons, fasteners, jewelry, or cosmetics", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_1602", # "name": "Dermatological changes, chancre", # "common_name": "Painless genital ulcer", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_672", # "parent_relation": "character" # }, # { # "id": "s_398", # "name": "Dermatological changes, entire skin", # "common_name": "Skin changes on the entire body", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_1692", # "name": "Dermatological changes, exacerbated by alcohol consumption", # "common_name": "Skin changes worsening after alcohol consumption", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_483", # "name": "Dermatological changes, eyelid", # "common_name": "Skin change on eyelid", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_485", # "parent_relation": "character" # }, # { # "id": "s_486", # "parent_relation": "character" # }, # { # "id": "s_484", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_1923", # "name": "Dermatological changes, feet", # "common_name": "Skin changes on feet", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_2110", # "name": "Dermatological changes, female genital area", # "common_name": "Dermatological changes, female genital area", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1999", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_245", # "name": "Dermatological changes, forming a crust", # "common_name": "Skin changes forming a crust", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_373", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_350", # "name": "Dermatological changes, forming a line", # "common_name": "Skin changes forming a line", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1982", # "name": "Dermatological changes, hands", # "common_name": "Skin changes on hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1718", # "parent_relation": "base" # }, # { # "id": "s_1719", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_1680", # "name": "Dermatological changes, hyperpigmentation of the skin", # "common_name": "Darkening of the skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_390", # "name": "Dermatological changes, localization near sebaceous glands", # "common_name": "Skin changes on oily areas of body", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_694", # "name": "Dermatological changes, located in the mouth", # "common_name": "Dermatological changes located in the mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1", # "parent_relation": "character" # }, # { # "id": "s_1371", # "parent_relation": "character" # }, # { # "id": "s_1673", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_1808", # "name": "Dermatological changes, located on the face", # "common_name": "Skin changes located on the face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_608", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_2111", # "name": "Dermatological changes, male genital area", # "common_name": "Dermatological changes, male genital area", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_433", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "location" # }, # { # "id": "s_1571", # "name": "Dermatological changes, painful", # "common_name": "Painful skin change", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "base" # }, # { # "id": "s_400", # "name": "Dermatological changes, preceded by pain or itching", # "common_name": "Skin changes preceded by pain or itching", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_402", # "name": "Dermatological changes, recurring during infections or menstrual period", # "common_name": "Skin changes recurring during infections or menstrual period", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_404", # "name": "Dermatological changes, rough and irregular surface", # "common_name": "Skin change with rough, irregular surface", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1191", # "name": "Dermatological changes, with flare-ups and remissions", # "common_name": "Skin changes that come and go", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1957", # "name": "Destructive thoughts towards other people or things", # "common_name": "Destructive thoughts towards other people or things", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_728", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_728", # "name": "Destructive thoughts, of harming one's child", # "common_name": "Destructive thoughts of harming one's child", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_729", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1957", # "parent_relation": "base" # }, # { # "id": "s_729", # "name": "Destructive thoughts, of wanting to kill one's child", # "common_name": "Destructive thoughts of wanting to kill one's child", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_728", # "parent_relation": "base" # }, # { # "id": "s_8", # "name": "Diarrhea", # "common_name": "Diarrhea", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_412", # "parent_relation": "character" # }, # { # "id": "s_1121", # "parent_relation": "character" # }, # { # "id": "s_1376", # "parent_relation": "character" # }, # { # "id": "s_1434", # "parent_relation": "character" # }, # { # "id": "s_1850", # "parent_relation": "duration" # }, # { # "id": "s_1849", # "parent_relation": "duration" # }, # { # "id": "s_1979", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_412", # "name": "Diarrhea, foamy", # "common_name": "Foamy diarrhea", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "character" # }, # { # "id": "s_1850", # "name": "Diarrhea, lasting more than 14 days", # "common_name": "Diarrhea, lasting more than 14 days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "duration" # }, # { # "id": "s_1849", # "name": "Diarrhea, lasting up to 14 days", # "common_name": "Diarrhea, lasting up to 14 days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "duration" # }, # { # "id": "s_1121", # "name": "Diarrhea, mainly at night", # "common_name": "Diarrhea mainly at night", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "character" # }, # { # "id": "s_1979", # "name": "Diarrhea, more than 6 stools a day", # "common_name": "Diarrhea with more than six stools a day", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "severity" # }, # { # "id": "s_1376", # "name": "Diarrhea, rice water", # "common_name": "Diarrhea looking like rice water", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "character" # }, # { # "id": "s_1798", # "name": "Difference in size of testicles", # "common_name": "Difference in size of testicles", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1574", # "name": "Difficulty achieving orgasm", # "common_name": "Difficulty achieving orgasm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_269", # "name": "Difficulty acquiring new information", # "common_name": "Difficulty learning new things", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_266", # "name": "Difficulty biting and chewing", # "common_name": "Difficulty biting and chewing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_727", # "name": "Difficulty bonding with infant", # "common_name": "Difficulty bonding with infant", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1154", # "name": "Difficulty completely closing one eye", # "common_name": "Difficulty completely closing one eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1156", # "parent_relation": "location" # }, # { # "id": "s_267", # "name": "Difficulty determining which tooth aches", # "common_name": "Difficulty determining which tooth aches", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_551", # "parent_relation": "location" # }, # { # "id": "s_134", # "name": "Difficulty not smoking first cigarette of the day", # "common_name": "Difficulty not smoking first cigarette of the day", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_195", # "parent_relation": "severity" # }, # { # "id": "s_265", # "name": "Difficulty refraining from smoking cigarettes where not permitted", # "common_name": "Difficulty refraining from smoking cigarettes where not permitted", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_195", # "parent_relation": "severity" # }, # { # "id": "s_263", # "name": "Difficulty retracting foreskin", # "common_name": "Difficulty retracting foreskin", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_284", # "name": "Diminished appetite", # "common_name": "Diminished appetite", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_968", # "name": "Diminished eye motility in the same direction", # "common_name": "Diminished eye motility in the same direction", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1035", # "name": "Diminished fear responses", # "common_name": "Diminished fear responses", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1021", # "name": "Diminished superficial reflexes", # "common_name": "Diminished superficial reflexes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_207", # "name": "Diplopia", # "common_name": "Double vision", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1232", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1235", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1229", # "parent_relation": "character" # }, # { # "id": "s_1231", # "parent_relation": "character" # }, # { # "id": "s_1230", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1232", # "name": "Diplopia while looking down and medially", # "common_name": "Double vision while looking down and toward the nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_207", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1235", # "name": "Diplopia while looking in any direction", # "common_name": "Double vision while looking in any direction", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_207", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1229", # "name": "Diplopia with horizontal image dispersion", # "common_name": "Double vision with images appearing side by side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_207", # "parent_relation": "character" # }, # { # "id": "s_1231", # "name": "Diplopia with vertical or oblique image dispersion", # "common_name": "Double vision with images appearing one above the other or obliquely", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_207", # "parent_relation": "character" # }, # { # "id": "s_297", # "name": "Discharge from ear", # "common_name": "Discharge from ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1577", # "parent_relation": "character" # }, # { # "id": "s_1994", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1577", # "name": "Discharge from ear, bloody", # "common_name": "Bleeding from ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_297", # "parent_relation": "character" # }, # { # "id": "s_1994", # "name": "Discharge from ear, purulent", # "common_name": "Yellow or green discharge from ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_297", # "parent_relation": "character" # }, # { # "id": "s_302", # "name": "Discharge from periodontal pockets", # "common_name": "Discharge from spaces between the gums and the teeth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_369", # "name": "Discharge from urethra", # "common_name": "Discharge from urethra", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_510", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1109", # "name": "Discharge in tympanic cavity", # "common_name": "Discharge in tympanic cavity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_301", # "name": "Discharge under foreskin", # "common_name": "Discharge under foreskin", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1007", # "name": "Disinhibition", # "common_name": "Disinhibition", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_731", # "name": "Disorganized behavior", # "common_name": "Disorganized behavior", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1265", # "name": "Dissociated sensory loss", # "common_name": "Dissociated sensory loss", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_501", # "name": "Distance misjudgment", # "common_name": "Problems judging distances", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_730", # "name": "Diurnal mood variation", # "common_name": "Mood better in the evening than in the morning", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_646", # "parent_relation": "character" # }, # { # "id": "s_1236", # "name": "Divergent strabismus", # "common_name": "Squint with one or two eyes turning outward", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1237", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1731", # "name": "Dix-Hallpike maneuver, rotatory nystagmus", # "common_name": "Dix-Hallpike maneuver, rotatory nystagmus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_370", # "name": "Dizziness", # "common_name": "Dizzy", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1479", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2023", # "parent_relation": "character" # }, # { # "id": "s_936", # "parent_relation": "character" # }, # { # "id": "s_2118", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1479", # "name": "Dizziness, head rotation", # "common_name": "Dizziness while turning the head", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_370", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2023", # "name": "Dizziness, recurrent", # "common_name": "Dizziness, recurrent", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_370", # "parent_relation": "character" # }, # { # "id": "s_2118", # "name": "Dizziness, unbearable", # "common_name": "Unbearable dizziness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_370", # "parent_relation": "severity" # }, # { # "id": "s_936", # "name": "Dizziness, vertigo", # "common_name": "Dizziness, vertigo", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_370", # "parent_relation": "character" # }, # { # "id": "s_827", # "name": "Drinking alcohol at work", # "common_name": "Drinking alcohol at work", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_819", # "name": "Drinking alcohol despite awareness of harmful effects", # "common_name": "Drinking alcohol despite awareness of harmful effects", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_828", # "name": "Drinking alone", # "common_name": "Drinking alone", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_198", # "name": "Drinking large quantities of alcohol", # "common_name": "Drinking large quantities of alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_589", # "parent_relation": "severity" # }, # { # "id": "s_199", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_199", # "name": "Drinking large quantities of alcohol at one time", # "common_name": "Drinking large quantities of alcohol at one time", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_198", # "parent_relation": "severity" # }, # { # "id": "s_109", # "name": "Drinking to ease hangover", # "common_name": "Drinking to ease hangover", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1158", # "name": "Drooping lower eyelid", # "common_name": "Drooping lower eyelid", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1156", # "parent_relation": "location" # }, # { # "id": "s_432", # "name": "Drooping mouth corner", # "common_name": "Drooping mouth corner", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_974", # "name": "Drop attack", # "common_name": "Drop attack", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_823", # "name": "Drunk driving", # "common_name": "Drunk driving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_489", # "name": "Dry discharge on eyelids", # "common_name": "Dry discharge on eyelids", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2094", # "name": "Dry eye", # "common_name": "Dry eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_247", # "name": "Dry mouth", # "common_name": "Dry mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_542", # "name": "Dry skin", # "common_name": "Dry skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_385", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_385", # "name": "Dry, cracked skin, bleeding occasionally", # "common_name": "Dry, cracked skin, bleeding occasionally", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_542", # "parent_relation": "character" # }, # { # "id": "s_315", # "name": "Dysarthria", # "common_name": "Difficulty with speech", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_993", # "parent_relation": "character" # }, # { # "id": "s_992", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_59", # "name": "Dysmenorrhea", # "common_name": "Painful menstrual periods", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1432", # "name": "Dyspepsia", # "common_name": "Indigestion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_962", # "name": "Dysphagia", # "common_name": "Difficulty swallowing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1779", # "parent_relation": "location" # }, # { # "id": "s_1776", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1779", # "name": "Dysphagia, esophageal", # "common_name": "Feeling of food getting stuck several seconds after swallowing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_962", # "parent_relation": "location" # }, # { # "id": "s_1776", # "name": "Dysphagia, oropharyngeal", # "common_name": "Difficulty initiating a swallow", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_962", # "parent_relation": "location" # }, # { # "id": "s_68", # "name": "Dysphonia", # "common_name": "Hoarseness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1958", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1958", # "name": "Dysphonia, over 2 weeks", # "common_name": "Hoarseness lasting more than two weeks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_68", # "parent_relation": "duration" # }, # { # "id": "s_88", # "name": "Dyspnea", # "common_name": "Shortness of breath", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1333", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_563", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1317", # "parent_relation": "character" # }, # { # "id": "s_2015", # "parent_relation": "character" # }, # { # "id": "s_92", # "parent_relation": "duration" # }, # { # "id": "s_1625", # "parent_relation": "duration" # }, # { # "id": "s_90", # "parent_relation": "duration" # }, # { # "id": "s_1185", # "parent_relation": "severity" # }, # { # "id": "s_1462", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_92", # "name": "Dyspnea, acute", # "common_name": "Shortness of breath appearing suddenly or developing over several minutes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "duration" # }, # { # "id": "s_2075", # "name": "Dyspnea, acute (trauma related)", # "common_name": "Sudden breathing problems after injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1625", # "name": "Dyspnea, chronic", # "common_name": "Chronic shortness of breath", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "duration" # }, # { # "id": "s_1333", # "name": "Dyspnea, exacerbating during exercise", # "common_name": "Shortness of breath that worsens during exercise", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_563", # "name": "Dyspnea, orthopnea", # "common_name": "Shortness of breath when lying flat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1317", # "name": "Dyspnea, paroxysmal nocturnal", # "common_name": "Shortness of breath waking up at night", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "character" # }, # { # "id": "s_2015", # "name": "Dyspnea, resting", # "common_name": "Shortness of breath at rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "character" # }, # { # "id": "s_90", # "name": "Dyspnea, subacute", # "common_name": "Shortness of breath getting worse over a few hours or days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "duration" # }, # { # "id": "s_1185", # "name": "Dyspnea, with flare-ups and remissions", # "common_name": "Shortness of breath that comes and goes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "severity" # }, # { # "id": "s_1298", # "name": "Dystonia", # "common_name": "Dystonia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_291", # "name": "Ear canal swelling", # "common_name": "Swelling inside the ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_widoczny_obrzek_i_zatkanie_przewodu_sluchowego.png", # "image_source": "Wikimedia Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_47", # "name": "Earache", # "common_name": "Earache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_476", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_234", # "name": "Easy bruising", # "common_name": "Easy bruising", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_siniaki_wybroczyny_na_skorze.png", # "image_source": "Wikimedia Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_700", # "name": "Edema", # "common_name": "Swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_175", # "parent_relation": "location" # }, # { # "id": "s_1581", # "parent_relation": "location" # }, # { # "id": "s_616", # "parent_relation": "location" # }, # { # "id": "s_1311", # "parent_relation": "location" # }, # { # "id": "s_174", # "parent_relation": "location" # }, # { # "id": "s_363", # "parent_relation": "location" # }, # { # "id": "s_173", # "parent_relation": "location" # }, # { # "id": "s_176", # "parent_relation": "location" # }, # { # "id": "s_1447", # "parent_relation": "location" # }, # { # "id": "s_701", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_699", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_702", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_562", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_171", # "name": "Edema, ankle joint", # "common_name": "Swollen ankle", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-w-stawie-skokowym.png", # "image_source": null, # "parent_id": "s_173", # "parent_relation": "location" # }, # { # "id": "s_623", # "name": "Edema, ankles", # "common_name": "Swollen ankles", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_175", # "parent_relation": "location" # }, # { # "id": "s_2093", # "name": "Edema, both hands", # "common_name": "Swelling of both hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1447", # "parent_relation": "location" # }, # { # "id": "s_175", # "name": "Edema, both lower limbs", # "common_name": "Swollen legs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_623", # "parent_relation": "location" # }, # { # "id": "s_1995", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_1581", # "name": "Edema, costochondral junctions", # "common_name": "Swelling in the middle of the chest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_701", # "name": "Edema, daytime", # "common_name": "Daytime swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_699", # "name": "Edema, dependent on the body position", # "common_name": "Swelling dependent on the body position", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1635", # "name": "Edema, elbow joint", # "common_name": "Elbow swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1447", # "parent_relation": "location" # }, # { # "id": "s_616", # "name": "Edema, face", # "common_name": "Face swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1433", # "parent_relation": "location" # }, # { # "id": "s_1996", # "parent_relation": "location" # }, # { # "id": "s_1442", # "parent_relation": "location" # }, # { # "id": "s_177", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_1995", # "name": "Edema, feet", # "common_name": "Swollen feet", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_175", # "parent_relation": "location" # }, # { # "id": "s_1311", # "name": "Edema, finger", # "common_name": "Finger swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_2103", # "name": "Edema, foot", # "common_name": "Swollen foot", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_173", # "parent_relation": "location" # }, # { # "id": "s_1652", # "name": "Edema, hip joint", # "common_name": "Hip swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_173", # "parent_relation": "location" # }, # { # "id": "s_174", # "name": "Edema, joint", # "common_name": "Joint swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_170", # "name": "Edema, knee joint", # "common_name": "Swollen knee", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-w-stawie-kolanowym.png", # "image_source": null, # "parent_id": "s_173", # "parent_relation": "location" # }, # { # "id": "s_1433", # "name": "Edema, lip", # "common_name": "Swollen lips", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_616", # "parent_relation": "location" # }, # { # "id": "s_363", # "name": "Edema, neck", # "common_name": "Swollen neck", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_702", # "name": "Edema, nighttime", # "common_name": "Nighttime swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1996", # "name": "Edema, nose", # "common_name": "Swollen nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_616", # "parent_relation": "location" # }, # { # "id": "s_1464", # "name": "Edema, one hand", # "common_name": "Hand swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1447", # "parent_relation": "location" # }, # { # "id": "s_173", # "name": "Edema, one lower limb", # "common_name": "Swollen leg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_171", # "parent_relation": "location" # }, # { # "id": "s_2103", # "parent_relation": "location" # }, # { # "id": "s_1652", # "parent_relation": "location" # }, # { # "id": "s_170", # "parent_relation": "location" # }, # { # "id": "s_1997", # "parent_relation": "location" # } # ], # "image_url": "http://static.doktor-medi.pl/images/s_obrzek_jednego_podudzia.png", # "image_source": "Wikimedia Commons", # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_1442", # "name": "Edema, periorbital", # "common_name": "Swelling around the eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_616", # "parent_relation": "location" # }, # { # "id": "s_562", # "name": "Edema, pitting", # "common_name": "Pitting edema", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "character" # }, # { # "id": "s_176", # "name": "Edema, scrotum", # "common_name": "Swollen scrotum", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_1655", # "name": "Edema, shoulder joint", # "common_name": "Shoulder swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1447", # "parent_relation": "location" # }, # { # "id": "s_1997", # "name": "Edema, toe", # "common_name": "Swollen toe", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_173", # "parent_relation": "location" # }, # { # "id": "s_1447", # "name": "Edema, upper limb", # "common_name": "Swelling of the upper limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2093", # "parent_relation": "location" # }, # { # "id": "s_1635", # "parent_relation": "location" # }, # { # "id": "s_1464", # "parent_relation": "location" # }, # { # "id": "s_1655", # "parent_relation": "location" # }, # { # "id": "s_1431", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_700", # "parent_relation": "location" # }, # { # "id": "s_1431", # "name": "Edema, wrist joint", # "common_name": "Swollen wrist", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1447", # "parent_relation": "location" # }, # { # "id": "s_633", # "name": "Elevated mood", # "common_name": "Elevated mood", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1166", # "name": "Enamel hypoplasia", # "common_name": "Enamel hypoplasia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_272", # "name": "Enamel lesions, caries", # "common_name": "Cavities", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_219", # "name": "Enlarged breasts", # "common_name": "Enlarged breasts", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1052", # "name": "Enlarged kidneys", # "common_name": "Enlarged kidneys", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_220", # "name": "Enlarged lymph nodes", # "common_name": "Enlarged lymph nodes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1057", # "name": "Enlarged salivary glands", # "common_name": "Enlarged salivary glands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_529", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_480", # "name": "Enlargement of hands, feet, or face", # "common_name": "Enlargement of hands, feet, or face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1103", # "name": "Enlargement of the lymphoid tissue in the pharynx", # "common_name": "Enlargement of the lymphoid tissue in the pharynx", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1071", # "name": "Epicritic sensation loss or impairment in fingertips", # "common_name": "Epicritic sensation loss or impairment in fingertips", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_733", # "name": "Erectile dysfunction", # "common_name": "Erectile dysfunction", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_229", # "name": "Erythema", # "common_name": "Redness of skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1468", # "parent_relation": "location" # }, # { # "id": "s_325", # "parent_relation": "location" # }, # { # "id": "s_1791", # "parent_relation": "location" # }, # { # "id": "s_758", # "parent_relation": "location" # }, # { # "id": "s_759", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1469", # "name": "Erythema and scaling on large portion of body", # "common_name": "Redness and scaling affecting nearly entire skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_384", # "parent_relation": "location" # }, # { # "id": "s_1955", # "name": "Erythema around eyes", # "common_name": "Redness around eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_202", # "name": "Erythema migrans", # "common_name": "Expanding rash with migrating redness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_pierscieniowate_zmiany_na_skorze_czerwona_obwodka_jasne_w_srodku.png", # "image_source": "Wikimedia Commons", # "parent_id": "s_1647", # "parent_relation": "character" # }, # { # "id": "s_323", # "name": "Erythema of skin overlying a joint", # "common_name": "Joint redness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_325", # "parent_relation": "location" # }, # { # "id": "s_1468", # "name": "Erythema, facial", # "common_name": "Red skin on face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_230", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_229", # "parent_relation": "location" # }, # { # "id": "s_230", # "name": "Erythema, facial, butterfly-shaped", # "common_name": "Rash on face covering only the cheeks and the nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1468", # "parent_relation": "location" # }, # { # "id": "s_1314", # "name": "Erythema, finger", # "common_name": "Red finger", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_557", # "parent_relation": "location" # }, # { # "id": "s_433", # "name": "Erythema, foreskin or head of the penis", # "common_name": "Reddened foreskin or head of the penis", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2111", # "parent_relation": "character" # }, # { # "id": "s_557", # "name": "Erythema, hand", # "common_name": "Red hand", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1314", # "parent_relation": "location" # }, # { # "id": "s_1125", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_325", # "parent_relation": "location" # }, # { # "id": "s_325", # "name": "Erythema, limb", # "common_name": "Red skin on arm or leg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_323", # "parent_relation": "location" # }, # { # "id": "s_557", # "parent_relation": "location" # }, # { # "id": "s_179", # "parent_relation": "location" # }, # { # "id": "s_2003", # "parent_relation": "location" # }, # { # "id": "s_757", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_229", # "parent_relation": "location" # }, # { # "id": "s_179", # "name": "Erythema, limb, hot to the touch", # "common_name": "Skin on arm or leg hot to the touch", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_325", # "parent_relation": "location" # }, # { # "id": "s_1125", # "name": "Erythema, palmar", # "common_name": "Red skin on palms", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_557", # "parent_relation": "location" # }, # { # "id": "s_1791", # "name": "Erythema, scalp", # "common_name": "Red patches on scalp", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_229", # "parent_relation": "location" # }, # { # "id": "s_2003", # "name": "Erythema, toe", # "common_name": "Red toe", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_325", # "parent_relation": "location" # }, # { # "id": "s_1999", # "name": "Erythema, vulva", # "common_name": "Redness of vulva", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2110", # "parent_relation": "character" # }, # { # "id": "s_1498", # "name": "Erythematous tonsils", # "common_name": "Unusually red tonsils", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_132", # "name": "Excess of hair", # "common_name": "Excess of hair", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_723", # "name": "Excessive fear in public situations", # "common_name": "Excessive fear in public situations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_721", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1304", # "name": "Excessive saliva production", # "common_name": "Excessive salivation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_216", # "name": "Excessive sweating", # "common_name": "Excessive sweating", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_217", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_122", # "name": "Excessive tear production", # "common_name": "Watery eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1290", # "name": "Excessive uterine enlargement in comparison to assumed duration of pregnancy", # "common_name": "Excessive uterine enlargement in comparison to assumed duration of pregnancy", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_725", # "name": "Excessive worry about the health of a child", # "common_name": "Excessive worry about the health of a child", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1163", # "name": "Exophthalmos", # "common_name": "Protruding eye or eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_606", # "name": "Eye flashes", # "common_name": "Eye flashes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "base" # }, # { # "id": "s_493", # "name": "Eye pain", # "common_name": "Eye pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_485", # "name": "Eyelid lesion, itching and painful", # "common_name": "Itching and painful skin change on eyelid", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_483", # "parent_relation": "character" # }, # { # "id": "s_486", # "name": "Eyelid lesion, red and warm", # "common_name": "Red and warm skin change on eyelid", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_483", # "parent_relation": "character" # }, # { # "id": "s_484", # "name": "Eyelid lesion, red lump with yellow tip", # "common_name": "Red lump with yellow tip on eyelid", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_czerwony_guzek_z_zoltawym_czubkiem_znajdujacy_sie_na_powiece.png", # "image_source": "Wikimedia Commons", # "parent_id": "s_483", # "parent_relation": "base" # }, # { # "id": "s_591", # "name": "Eyelid tremors", # "common_name": "Trembling eyelids", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_235", # "name": "Eyelid twitching", # "common_name": "Eyelid twitching", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1425", # "parent_relation": "location" # }, # { # "id": "s_488", # "name": "Eyes sensitive to light", # "common_name": "Eyes sensitive to light", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1156", # "name": "Facial muscle paresis", # "common_name": "Facial muscle weakness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1154", # "parent_relation": "location" # }, # { # "id": "s_1158", # "parent_relation": "location" # }, # { # "id": "s_149", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1425", # "name": "Facial muscle spasms", # "common_name": "Facial muscle spasms", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_235", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_478", # "name": "Facial pain", # "common_name": "Facial pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1436", # "parent_relation": "location" # }, # { # "id": "s_424", # "parent_relation": "location" # }, # { # "id": "s_426", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_425", # "parent_relation": "character" # }, # { # "id": "s_1203", # "parent_relation": "duration" # }, # { # "id": "s_427", # "parent_relation": "duration" # }, # { # "id": "s_1194", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1203", # "name": "Facial pain, longer than a few hours", # "common_name": "Facial pain lasting longer than a couple of hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "duration" # }, # { # "id": "s_1436", # "name": "Facial pain, paranasal sinus", # "common_name": "Sinus pain or pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "location" # }, # { # "id": "s_427", # "name": "Facial pain, periodic", # "common_name": "Periodic facial pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "duration" # }, # { # "id": "s_1194", # "name": "Facial pain, severe", # "common_name": "Severe facial pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "severity" # }, # { # "id": "s_425", # "name": "Facial pain, stabbing", # "common_name": "Facial pain, stabbing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "character" # }, # { # "id": "s_426", # "name": "Facial pain, triggered by eating, touching, brushing teeth", # "common_name": "Facial pain triggered by eating, touching, or brushing teeth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_424", # "name": "Facial pain, unilateral", # "common_name": "Facial pain on one side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_478", # "parent_relation": "location" # }, # { # "id": "s_2100", # "name": "Fatigue", # "common_name": "Fatigue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1332", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1547", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1547", # "name": "Fatigue, for more than six months", # "common_name": "Fatigue more than six months", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2100", # "parent_relation": "duration" # }, # { # "id": "s_516", # "name": "Fear of dying", # "common_name": "Fear of dying", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_120", # "parent_relation": "character" # }, # { # "id": "s_1087", # "name": "Fear of going insane", # "common_name": "Fear of going insane", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_120", # "parent_relation": "character" # }, # { # "id": "s_1088", # "name": "Fear of losing control", # "common_name": "Fear of losing control", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_157", # "name": "Fear of obesity", # "common_name": "Fear of obesity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_244", # "name": "Fear of object, situation, action", # "common_name": "Fear of object, situation, action", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_721", # "name": "Fear of public appearances", # "common_name": "Fear of public appearances", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_723", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1587", # "name": "Feeling detached from your body", # "common_name": "Feeling detached from your body", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_274", # "name": "Feeling hot", # "common_name": "Feeling hot", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_205", # "name": "Feeling of guilt", # "common_name": "Feeling of guilt", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_206", # "name": "Feeling of guilt or shame after drinking alcohol", # "common_name": "Feeling of guilt or shame after drinking alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_629", # "name": "Feeling of helplessness", # "common_name": "Feeling of helplessness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_632", # "name": "Feeling of hopelessness", # "common_name": "Feeling of hopelessness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1565", # "name": "Feeling of rectal fullness", # "common_name": "Feeling of rectal fullness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_507", # "name": "Feeling of resignation", # "common_name": "Feeling of resignation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1175", # "name": "Feeling of weight in scrotum", # "common_name": "Feeling of weight in scrotum", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_419", # "name": "Feeling overweight despite low weight", # "common_name": "Feeling overweight despite low weight", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_279", # "name": "Feeling pressure or pulsation inside the tooth", # "common_name": "Feeling pressure or pulsation inside the tooth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_7", # "name": "Female infertility", # "common_name": "Female infertility", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2010", # "name": "Fetal membranes rupture", # "common_name": "Water breaking", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_2125", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2125", # "name": "Fetal membranes rupture, purulent or malodorous amniotic fluid", # "common_name": "Smelly or colored waters", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2010", # "parent_relation": "character" # }, # { # "id": "s_98", # "name": "Fever", # "common_name": "Fever", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_100", # "parent_relation": "severity" # }, # { # "id": "s_99", # "parent_relation": "severity" # }, # { # "id": "s_2000", # "parent_relation": "severity" # }, # { # "id": "s_1186", # "parent_relation": "severity" # }, # { # "id": "s_1820", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_100", # "name": "Fever between 100.4 and 104 °F (38 and 40 °C)", # "common_name": "Fever between 100.4 and 104 °F (38 and 40 °C)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_98", # "parent_relation": "severity" # }, # { # "id": "s_99", # "name": "Fever between 98.6 and 100.4°F (37 and 38°C)", # "common_name": "Fever between 98.6 and 100.4°F (37 and 38°C)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_98", # "parent_relation": "severity" # }, # { # "id": "s_2000", # "name": "Fever greater than 104 °F (40 °C)", # "common_name": "Fever greater than 104 °F (40 °C)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_98", # "parent_relation": "severity" # }, # { # "id": "s_1186", # "name": "Fever with flare-ups and remissions", # "common_name": "Fever that comes and goes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_98", # "parent_relation": "severity" # }, # { # "id": "s_1820", # "name": "Fever, temperature not measured", # "common_name": "Fever, temperature not measured", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_98", # "parent_relation": "base" # }, # { # "id": "s_636", # "name": "Financial recklessness", # "common_name": "Financial recklessness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_77", # "name": "Fine downy hair", # "common_name": "Fine downy hair", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_660", # "name": "Fits of anger", # "common_name": "Fits of anger", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_993", # "name": "Flaccid dysarthria", # "common_name": "Flaccid dysarthria", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_315", # "parent_relation": "character" # }, # { # "id": "s_1079", # "name": "Flaccid paresis", # "common_name": "Flaccid paresis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1080", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_148", # "parent_relation": "base" # }, # { # "id": "s_1080", # "name": "Flaccid paresis, symmetrical", # "common_name": "Flaccid paresis, symmetrical", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1081", # "parent_relation": "location" # }, # { # "id": "s_1082", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1079", # "parent_relation": "character" # }, # { # "id": "s_772", # "name": "Flat affect", # "common_name": "Flat affect", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_504", # "name": "Foamy urine", # "common_name": "Foamy urine", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1909", # "name": "Foot drop", # "common_name": "Dropping of the forefoot", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1645", # "name": "Foot pain, back of the foot, during single-leg heel raise", # "common_name": "Pain in the back of foot while standing on toes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_578", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1799", # "name": "Forearm pain", # "common_name": "Forearm pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_580", # "parent_relation": "location" # }, # { # "id": "s_146", # "name": "Forgetting names of close friends and family", # "common_name": "Forgetting names of close friends and family", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_204", # "name": "Forward-leaning posture", # "common_name": "Forward-leaning posture", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_525", # "name": "Foul-smelling stools", # "common_name": "Foul-smelling stools", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1401", # "name": "Frequent bowel movement", # "common_name": "Frequent bowel movement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1728", # "parent_relation": "character" # }, # { # "id": "s_505", # "name": "Frequent infections", # "common_name": "Frequent infections", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_532", # "parent_relation": "location" # }, # { # "id": "s_531", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_532", # "name": "Frequent infections, lower respiratory tract", # "common_name": "Frequent bronchitis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_505", # "parent_relation": "location" # }, # { # "id": "s_531", # "name": "Frequent infections, upper respiratory tract", # "common_name": "Frequent runny nose, cough", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_505", # "parent_relation": "location" # }, # { # "id": "s_215", # "name": "Frequent urination", # "common_name": "Frequent urination", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_75", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_75", # "name": "Frequent urination, large quantities", # "common_name": "Frequent urination in large quantities", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_215", # "parent_relation": "character" # }, # { # "id": "s_990", # "name": "Frontal release signs", # "common_name": "Frontal release signs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_366", # "name": "Frothy, yellow-green vaginal discharge", # "common_name": "Frothy, yellow-green vaginal discharge", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_328", # "parent_relation": "character" # }, # { # "id": "s_547", # "name": "Galactorrhea", # "common_name": "Milky discharge from the nipple", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2032", # "name": "Gambling", # "common_name": "Gambling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2024", # "parent_relation": "severity" # }, # { # "id": "s_2029", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2024", # "name": "Gambling, pathological", # "common_name": "Excessive gambling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2032", # "parent_relation": "severity" # }, # { # "id": "s_1570", # "name": "Gastric symptoms after eating or drinking foods containing lactose", # "common_name": "Gastric symptoms after eating or drinking foods containing lactose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1767", # "name": "Gastrointestinal complaints, stress-related", # "common_name": "Stress-related gastrointestinal complaints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_583", # "name": "General anxiety", # "common_name": "General anxiety", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_120", # "parent_relation": "character" # }, # { # "id": "s_1226", # "name": "Genu varum", # "common_name": "Bowlegs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1090", # "name": "Glassy eyes", # "common_name": "Glassy eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_513", # "name": "Globus sensation", # "common_name": "Feeling of lump in throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1302", # "name": "Goldflam sign", # "common_name": "Goldflam sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1263", # "name": "Gonda-Allen sign", # "common_name": "Gonda-Allen sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1254", # "name": "Gordon sign", # "common_name": "Gordon sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_756", # "name": "Gottron's papules", # "common_name": "Red, painful bumps on the skin overlying joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://upload.wikimedia.org/wikipedia/commons/c/cc/Dermatomyositis.jpg", # "image_source": "http://dermatology.cdlib.org", # "parent_id": "s_101", # "parent_relation": "character" # }, # { # "id": "s_639", # "name": "Grandiosity", # "common_name": "Grandiosity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1294", # "name": "Grape-like vaginal discharge", # "common_name": "Grape-like vaginal discharge", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_328", # "parent_relation": "character" # }, # { # "id": "s_322", # "name": "Gum erythema", # "common_name": "Red gums", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_19", # "name": "Gum pain", # "common_name": "Gum pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_586", # "name": "Gynecomastia", # "common_name": "Gynecomastia", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_121", # "name": "Hair loss", # "common_name": "Hair loss", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1671", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_618", # "name": "Hairy leukoplakia", # "common_name": "Hairy leukoplakia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_65", # "name": "Halitosis", # "common_name": "Bad breath", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_686", # "name": "Hallucinations", # "common_name": "Hallucinations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_682", # "parent_relation": "base" # }, # { # "id": "s_683", # "parent_relation": "base" # }, # { # "id": "s_684", # "parent_relation": "base" # }, # { # "id": "s_685", # "parent_relation": "base" # }, # { # "id": "s_681", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_682", # "name": "Hallucinations, auditory", # "common_name": "Auditory hallucinations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_841", # "parent_relation": "character" # }, # { # "id": "s_840", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_686", # "parent_relation": "base" # }, # { # "id": "s_683", # "name": "Hallucinations, gustatory", # "common_name": "Gustatory hallucinations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_686", # "parent_relation": "base" # }, # { # "id": "s_684", # "name": "Hallucinations, olfactory", # "common_name": "Olfactory hallucinations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_686", # "parent_relation": "base" # }, # { # "id": "s_685", # "name": "Hallucinations, tactile", # "common_name": "Tactile hallucinations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_686", # "parent_relation": "base" # }, # { # "id": "s_681", # "name": "Hallucinations, visual", # "common_name": "Visual hallucinations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_686", # "parent_relation": "base" # }, # { # "id": "s_2041", # "name": "Halos around lights", # "common_name": "Halos around lights", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1246", # "name": "Hard lump in inguinal region", # "common_name": "Hard lump in groin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1248", # "parent_relation": "character" # }, # { # "id": "s_1247", # "parent_relation": "character" # }, # { # "id": "s_1249", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1830", # "parent_relation": "location" # }, # { # "id": "s_1248", # "name": "Hard lump in inguinal region, dark or bluish discoloration", # "common_name": "Dark or bluish hard mass in the groin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1246", # "parent_relation": "character" # }, # { # "id": "s_1247", # "name": "Hard lump in inguinal region, irreducible", # "common_name": "Groin mass impossible to reduce into abdomen manually", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1246", # "parent_relation": "character" # }, # { # "id": "s_1249", # "name": "Hard lump in inguinal region, tender", # "common_name": "Painful hard mass in groin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1246", # "parent_relation": "character" # }, # { # "id": "s_1346", # "name": "Hard retinal exudates", # "common_name": "Hard retinal exudates", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_191", # "name": "Head drop", # "common_name": "Head drop", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1230", # "name": "Head tilt in order to avoid diplopia", # "common_name": "Double vision resolving while tilting the head", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_207", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_85", # "name": "Head tremors", # "common_name": "Head tremors", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_21", # "name": "Headache", # "common_name": "Headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1762", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_625", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_799", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1349", # "parent_relation": "location" # }, # { # "id": "s_24", # "parent_relation": "location" # }, # { # "id": "s_970", # "parent_relation": "location" # }, # { # "id": "s_1911", # "parent_relation": "location" # }, # { # "id": "s_22", # "parent_relation": "location" # }, # { # "id": "s_604", # "parent_relation": "character" # }, # { # "id": "s_23", # "parent_relation": "character" # }, # { # "id": "s_25", # "parent_relation": "character" # }, # { # "id": "s_1535", # "parent_relation": "duration" # }, # { # "id": "s_1912", # "parent_relation": "duration" # }, # { # "id": "s_605", # "parent_relation": "duration" # }, # { # "id": "s_1905", # "parent_relation": "duration" # }, # { # "id": "s_1780", # "parent_relation": "severity" # }, # { # "id": "s_1781", # "parent_relation": "severity" # }, # { # "id": "s_1193", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1870", # "name": "Headache, attack lasting 4 to 72 hours", # "common_name": "Headaches lasting between 4 and 72 hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1535", # "parent_relation": "duration" # }, # { # "id": "s_1868", # "name": "Headache, attack lasting five minutes to four hours", # "common_name": "Headaches lasting between five minutes and four hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1535", # "parent_relation": "duration" # }, # { # "id": "s_1901", # "name": "Headache, attack lasting three to seven days", # "common_name": "Headaches lasting from three to seven days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1535", # "parent_relation": "duration" # }, # { # "id": "s_1907", # "name": "Headache, attack lasting up to five minutes", # "common_name": "Headache attacks lasting up to 5 minutes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1535", # "parent_relation": "duration" # }, # { # "id": "s_1535", # "name": "Headache, chronic", # "common_name": "Headaches history longer than 3 months", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1870", # "parent_relation": "duration" # }, # { # "id": "s_1868", # "parent_relation": "duration" # }, # { # "id": "s_1901", # "parent_relation": "duration" # }, # { # "id": "s_1907", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "duration" # }, # { # "id": "s_1762", # "name": "Headache, exacerbated by increased stress", # "common_name": "Headache worsened by stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_625", # "name": "Headache, exacerbating by tilting head forward", # "common_name": "Headache worsened by tilting head forward", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_799", # "name": "Headache, exacerbating in the morning", # "common_name": "Morning headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1349", # "name": "Headache, forehead", # "common_name": "Headache located around the forehead", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "location" # }, # { # "id": "s_24", # "name": "Headache, generalized", # "common_name": "Generalized headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-glowy-obustronny.png", # "image_source": null, # "parent_id": "s_21", # "parent_relation": "location" # }, # { # "id": "s_604", # "name": "Headache, lancinating", # "common_name": "Stabbing headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "character" # }, # { # "id": "s_1780", # "name": "Headache, mild", # "common_name": "Mild headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "severity" # }, # { # "id": "s_1781", # "name": "Headache, moderate", # "common_name": "Moderate headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "severity" # }, # { # "id": "s_970", # "name": "Headache, occipital", # "common_name": "Pain in back of head", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "location" # }, # { # "id": "s_23", # "name": "Headache, pressing", # "common_name": "Head pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "character" # }, # { # "id": "s_25", # "name": "Headache, pulsating", # "common_name": "Pulsing headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "character" # }, # { # "id": "s_1912", # "name": "Headache, recent", # "common_name": "Headaches history shorter than 3 months", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "duration" # }, # { # "id": "s_605", # "name": "Headache, series over a period of time", # "common_name": "Series of headaches", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "duration" # }, # { # "id": "s_1193", # "name": "Headache, severe", # "common_name": "Severe headache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1864", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "severity" # }, # { # "id": "s_1905", # "name": "Headache, sudden onset", # "common_name": "Headache reaching its climax within minutes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "duration" # }, # { # "id": "s_1911", # "name": "Headache, temporal region", # "common_name": "Pain in the temples", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_21", # "parent_relation": "location" # }, # { # "id": "s_22", # "name": "Headache, unilateral", # "common_name": "Headache on one side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-glowy-jednostronny.png", # "image_source": null, # "parent_id": "s_21", # "parent_relation": "location" # }, # { # "id": "s_1864", # "name": "Headache, worst headache in life", # "common_name": "Worst headache in life", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1193", # "parent_relation": "severity" # }, # { # "id": "s_841", # "name": "Hearing voices arguing", # "common_name": "Hearing voices arguing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_682", # "parent_relation": "character" # }, # { # "id": "s_840", # "name": "Hearing voices commenting", # "common_name": "Hearing voices commenting", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_682", # "parent_relation": "character" # }, # { # "id": "s_338", # "name": "Heartburn", # "common_name": "Heartburn", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_273", # "name": "Heavy legs at the end of the day", # "common_name": "Heavy legs at the end of the day", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_158", # "name": "Heavy or prolonged menstrual periods", # "common_name": "Heavy or prolonged menstrual periods", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1922", # "name": "Heel drop test", # "common_name": "Heel drop test", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1170", # "name": "Hemarthrosis", # "common_name": "Bleeding into joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_306", # "name": "Hematemesis", # "common_name": "Vomiting blood", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_305", # "parent_relation": "character" # }, # { # "id": "s_814", # "name": "Hemianopsia bitemporalis", # "common_name": "Hemianopsia bitemporalis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "character" # }, # { # "id": "s_1005", # "name": "Hemiparesis", # "common_name": "Weakness of the half of the body", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_1022", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1022", # "name": "Hemiplegia", # "common_name": "Hemiplegia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1005", # "parent_relation": "severity" # }, # { # "id": "s_116", # "name": "Hemoptysis", # "common_name": "Coughing up blood", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1051", # "name": "Hepatomegaly", # "common_name": "Hepatomegaly", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1295", # "name": "Hiccups", # "common_name": "Hiccups", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1108", # "name": "High-arched palate", # "common_name": "High-arched palate", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_757", # "name": "Holster sign", # "common_name": "Redness on hips or sides of the thighs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_325", # "parent_relation": "location" # }, # { # "id": "s_957", # "name": "Homonymous hemianopsia", # "common_name": "Visual field loss on the same side of both eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "character" # }, # { # "id": "s_373", # "name": "Honey-colored crust on the skin", # "common_name": "Honey-colored crust on the skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_245", # "parent_relation": "character" # }, # { # "id": "s_280", # "name": "Hot flashes", # "common_name": "Hot flashes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1481", # "name": "Hyperalgesia", # "common_name": "Hyperalgesia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_760", # "name": "Hyperkeratosis on hands", # "common_name": "Thickened and cracked skin on hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1891", # "name": "Hypersensitivity to smells", # "common_name": "Oversensitivity to smells", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1150", # "name": "Hypersensitivity to sound", # "common_name": "Oversensitivity to sound", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_543", # "name": "Hypertension, over 140 mmHg", # "common_name": "Hypertension, over 140 mmHg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_530", # "parent_relation": "character" # }, # { # "id": "s_1933", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1933", # "name": "Hypertension, over 180 mmHg", # "common_name": "Blood pressure over 180/120 mmHg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_543", # "parent_relation": "severity" # }, # { # "id": "s_1159", # "name": "Hypesthesia of half of the face", # "common_name": "Loss of sensation on one side of the face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_959", # "parent_relation": "location" # }, # { # "id": "s_679", # "name": "Hypochondriacal delusions", # "common_name": "Hypochondriacal delusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_1876", # "name": "Hypomenorrhea", # "common_name": "Scanty menstruation", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_180", # "name": "Hypopigmentation of the skin", # "common_name": "Lightening of the skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_570", # "name": "Hypopyon", # "common_name": "Collection of pus in the front of the eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_hypopyon_ropostek.png", # "image_source": "Wiki Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_533", # "name": "Hypotension", # "common_name": "Low blood pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_341", # "name": "Illusion of surroundings being bigger or smaller than they actually are", # "common_name": "Illusion of surroundings being bigger or smaller than they actually are", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_317", # "name": "Impaired balance while walking", # "common_name": "Impaired balance while walking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_631", # "name": "Impaired concentration", # "common_name": "Poor concentration", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_1241", # "name": "Impaired downward eye motion", # "common_name": "Impaired downward eye motion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1227", # "name": "Impaired lateral eye motion", # "common_name": "Impaired lateral eye motion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1240", # "name": "Impaired medial eye motion", # "common_name": "Impaired medial eye motion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_316", # "name": "Impaired memory", # "common_name": "Impaired memory", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_619", # "parent_relation": "character" # }, # { # "id": "s_830", # "parent_relation": "character" # }, # { # "id": "s_825", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_2108", # "parent_relation": "base" # }, # { # "id": "s_825", # "name": "Impaired memory, alcohol-related amnesia", # "common_name": "Alcohol-related amnesia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_316", # "parent_relation": "base" # }, # { # "id": "s_619", # "name": "Impaired memory, finding objects of everyday use", # "common_name": "Difficulty finding everyday objects", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_316", # "parent_relation": "character" # }, # { # "id": "s_830", # "name": "Impaired memory, short term", # "common_name": "Impaired short-term memory", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_316", # "parent_relation": "character" # }, # { # "id": "s_1095", # "name": "Impaired smell", # "common_name": "Impaired smell", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_716", # "name": "Impaired social functioning", # "common_name": "Worse functioning at home, work, or school", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1239", # "name": "Impaired upward eye motion", # "common_name": "Impaired upward eye motion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_320", # "name": "Impaired vision", # "common_name": "Impaired vision", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1819", # "parent_relation": "location" # }, # { # "id": "s_1328", # "parent_relation": "character" # }, # { # "id": "s_814", # "parent_relation": "character" # }, # { # "id": "s_957", # "parent_relation": "character" # }, # { # "id": "s_1027", # "parent_relation": "character" # }, # { # "id": "s_494", # "parent_relation": "character" # }, # { # "id": "s_1818", # "parent_relation": "duration" # }, # { # "id": "s_1465", # "parent_relation": "duration" # }, # { # "id": "s_1934", # "parent_relation": "severity" # }, # { # "id": "s_967", # "parent_relation": "base" # }, # { # "id": "s_606", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1819", # "name": "Impaired vision in one eye", # "common_name": "Impaired vision in one eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1146", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "location" # }, # { # "id": "s_1146", # "name": "Impaired vision on side with painful temple", # "common_name": "Impaired vision on side with painful temple", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1819", # "parent_relation": "location" # }, # { # "id": "s_1818", # "name": "Impaired vision, recent onset", # "common_name": "Recent vision problems", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "duration" # }, # { # "id": "s_1384", # "name": "Impulsive behavior", # "common_name": "Impulsive behavior", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2086", # "name": "Inability to bear weight", # "common_name": "Inability to stand on one or both feet", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1385", # "name": "Inability to complete tasks", # "common_name": "Inability to complete tasks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1300", # "name": "Inability to move mandible sideways", # "common_name": "Inability to move mandible sideways", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1551", # "name": "Inability to pass flatus", # "common_name": "Inability to pass gas", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_711", # "name": "Inability to remember important aspects of a traumatic experience", # "common_name": "Inability to remember important aspects of a traumatic experience", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_150", # "name": "Inability to stop drinking alcohol", # "common_name": "Inability to stop drinking alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_223", # "name": "Inability to stop flow of urine", # "common_name": "Inability to stop flow of urine", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_361", # "name": "Increase in sexual experiences or sensations needed to attain desired effect", # "common_name": "Increase in sexual experiences or sensations needed to attain desired effect", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_277", # "name": "Increased abdominal girth", # "common_name": "Increased abdominal size", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_311", # "name": "Increased appetite", # "common_name": "Increased appetite", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1488", # "name": "Increased expiratory phase", # "common_name": "Increased expiratory phase", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_421", # "name": "Increased libido", # "common_name": "Increased libido", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_991", # "name": "Increased masseter reflex", # "common_name": "Jaw jerk", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1278", # "name": "Increased palatine reflex", # "common_name": "Increased palatine reflex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1279", # "name": "Increased pharyngeal reflex", # "common_name": "Increased pharyngeal reflex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_310", # "name": "Increased thirst", # "common_name": "Increased thirst", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_917", # "name": "Insomnia", # "common_name": "Insomnia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_319", # "parent_relation": "character" # }, # { # "id": "s_1745", # "name": "Instability in knee", # "common_name": "Unstable knee", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1383", # "name": "Intense, non-committal relationships", # "common_name": "Intense, non-committal relationships", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_358", # "name": "Intermittent urine flow", # "common_name": "Intermittent urine flow", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1084", # "name": "Interosseous muscles atrophy, feet", # "common_name": "Interosseous muscles atrophy, feet", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_622", # "parent_relation": "location" # }, # { # "id": "s_1083", # "name": "Interosseous muscles atrophy, hands", # "common_name": "Interosseous muscles atrophy, hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_564", # "parent_relation": "location" # }, # { # "id": "s_1416", # "name": "Intraretinal microvascular abnormalities", # "common_name": "Intraretinal microvascular abnormalities", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1411", # "name": "Iris neovascularization", # "common_name": "Iris neovascularization", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1440", # "name": "Irregular menstruations", # "common_name": "Irregular menstruations", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_540", # "name": "Irritability", # "common_name": "Irritability", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_80", # "name": "Irritability when unable to engage in activity related to sex", # "common_name": "Irritability when unable to engage in activity related to sex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_614", # "name": "Itching after a hot shower or bath", # "common_name": "Itching after a hot shower or bath", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_249", # "name": "Itching around anus", # "common_name": "Itching around anus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_253", # "name": "Itching in crotch", # "common_name": "Genital itch", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2043", # "parent_relation": "location" # }, # { # "id": "s_630", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_254", # "parent_relation": "location" # }, # { # "id": "s_255", # "name": "Itching in ear", # "common_name": "Itching in ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1563", # "name": "Itching of eyes", # "common_name": "Itching of eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_252", # "name": "Itchy throat or nose", # "common_name": "Itchy throat or nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1271", # "name": "Jacobsohn sign", # "common_name": "Finger flexion when tapping distal base of radius bone", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1718", # "name": "Janeway lesion", # "common_name": "Janeway lesion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1982", # "parent_relation": "base" # }, # { # "id": "s_332", # "name": "Jaundice", # "common_name": "Yellowed skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_334", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_336", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_335", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_334", # "name": "Jaundice during increased stress", # "common_name": "Yellowed skin after a time of increased stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_332", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_336", # "name": "Jaundice during infectious disease", # "common_name": "Yellowed skin while suffering from an infectious disease", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_332", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_335", # "name": "Jaundice following intense physical exertion", # "common_name": "Yellowed skin after a physical exertion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_332", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1961", # "name": "Jaw pain", # "common_name": "Jaw pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_430", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_359", # "name": "Joint deformation", # "common_name": "Deformed joint", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_znieksztalcenie_stawu.png", # "image_source": "Wikimedia Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2087", # "name": "Joint deformation, posttraumatic", # "common_name": "Deformed joints after injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_44", # "name": "Joint pain", # "common_name": "Joint pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_576", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_29", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1621", # "parent_relation": "location" # }, # { # "id": "s_1632", # "parent_relation": "location" # }, # { # "id": "s_11", # "parent_relation": "location" # }, # { # "id": "s_581", # "parent_relation": "location" # }, # { # "id": "s_1654", # "parent_relation": "location" # }, # { # "id": "s_1639", # "parent_relation": "location" # }, # { # "id": "s_1430", # "parent_relation": "location" # }, # { # "id": "s_1201", # "parent_relation": "duration" # }, # { # "id": "s_41", # "parent_relation": "severity" # }, # { # "id": "s_1656", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_576", # "name": "Joint pain, aggravated during cold, damp weather", # "common_name": "Joint pain, aggravated during cold, damp weather", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1621", # "name": "Joint pain, ankle", # "common_name": "Ankle pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1623", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_1623", # "name": "Joint pain, during ankle movement", # "common_name": "Ankle pain while moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1621", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1634", # "name": "Joint pain, during elbow movement", # "common_name": "Elbow pain while moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1632", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1823", # "name": "Joint pain, during hip movement", # "common_name": "Joint pain, during hip movement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_11", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1610", # "name": "Joint pain, during knee movement", # "common_name": "Knee pain while moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_581", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_29", # "name": "Joint pain, during movement in the morning", # "common_name": "Joint pain in the morning", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1805", # "name": "Joint pain, during shoulder movement", # "common_name": "Shoulder pain while moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1654", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1641", # "name": "Joint pain, during thumb movement", # "common_name": "Thumb pain while moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1639", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1636", # "name": "Joint pain, during wrist movement", # "common_name": "Wrist pain while moving", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1430", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1632", # "name": "Joint pain, elbow", # "common_name": "Elbow pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1634", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_79", # "name": "Joint pain, hallux", # "common_name": "Big toe pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1833", # "parent_relation": "location" # }, # { # "id": "s_11", # "name": "Joint pain, hip", # "common_name": "Joint pain, hip", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1823", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_581", # "name": "Joint pain, knee", # "common_name": "Knee pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1610", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_41", # "name": "Joint pain, severe, as a result of an injury", # "common_name": "Severe joint pain after an injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "severity" # }, # { # "id": "s_1654", # "name": "Joint pain, shoulder", # "common_name": "Shoulder pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1805", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_1201", # "name": "Joint pain, sudden", # "common_name": "Sudden joint pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "duration" # }, # { # "id": "s_1656", # "name": "Joint pain, tenderness", # "common_name": "Joint pain while touching", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "base" # }, # { # "id": "s_1639", # "name": "Joint pain, thumb", # "common_name": "Thumb pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1641", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_1430", # "name": "Joint pain, wrist", # "common_name": "Wrist pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1636", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_44", # "parent_relation": "location" # }, # { # "id": "s_575", # "name": "Joint stiffness", # "common_name": "Stiff joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_258", # "parent_relation": "character" # }, # { # "id": "s_259", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1472", # "name": "Kayser–Fleischer ring", # "common_name": "Dark rings appearing around the iris of the eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1689", # "name": "Kernig's sign", # "common_name": "Kernig's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_664", # "name": "Koplik's spots", # "common_name": "Small white spots with red rims in the mouth, near the molar teeth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1451", # "name": "Kussmaul breathing", # "common_name": "Abnormally deep, labored and gasping breathing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_778", # "name": "Lack of boundaries in interpersonal relations", # "common_name": "Lack of boundaries in relationships", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1006", # "name": "Lack of initiative, motivation, or drive", # "common_name": "Lack of initiative, motivation, or drive", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_964", # "name": "Lateropulsion", # "common_name": "Falling or losing gait on one side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1282", # "name": "Lead-pipe rigidity", # "common_name": "Constant muscle stiffness in a limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_571", # "parent_relation": "character" # }, # { # "id": "s_1014", # "name": "Left limb-kinetic apraxia", # "common_name": "Left limb-kinetic apraxia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1010", # "parent_relation": "location" # }, # { # "id": "s_658", # "name": "Lengthening of reaction time", # "common_name": "Lengthening of reaction time", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_550", # "name": "Lens clouding", # "common_name": "Cloudy eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_666", # "name": "Leopard-like spots on the skin", # "common_name": "Brick-colored spots resembling leopard spots", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_665", # "parent_relation": "character" # }, # { # "id": "s_1378", # "name": "Levine's sign", # "common_name": "Levine's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1054", # "name": "Lhermitte's sign", # "common_name": "Lhermitte's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1793", # "name": "Lice eggs or nits on hair shafts", # "common_name": "Tiny eggs at the base of the hair shaft", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1927", # "name": "Limping due to pain", # "common_name": "Limping due to pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "base" # }, # { # "id": "s_1324", # "name": "Lisch nodules", # "common_name": "Lisch nodules", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_763", # "name": "Livedo reticularis", # "common_name": "Mottled skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://drugline.org/img/ail/3118_3141_3.jpg", # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1407", # "name": "Local dark retinal blood vessels that lie in folds", # "common_name": "Local dark retinal blood vessels that lie in folds", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1405", # "name": "Local elevation of retina", # "common_name": "Local elevation of retina", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1406", # "name": "Local grey discoloration of retina", # "common_name": "Local grey discoloration of retina", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1408", # "name": "Local retinal undulation", # "common_name": "Local retinal undulation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_228", # "name": "Loose teeth", # "common_name": "Loose teeth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1115", # "name": "Loss of body hair", # "common_name": "Loss of body hair", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1543", # "name": "Loss of consciousness", # "common_name": "Loss of consciousness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_190", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_190", # "name": "Loss of consciousness, with urination or defecation", # "common_name": "Fainting with loss of bladder or bowel control", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1543", # "parent_relation": "character" # }, # { # "id": "s_287", # "name": "Loss of interest in activities previously enjoyed, lasting at least two weeks", # "common_name": "Loss of interest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_622", # "name": "Loss of muscle mass", # "common_name": "Loss of muscles", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1084", # "parent_relation": "location" # }, # { # "id": "s_564", # "parent_relation": "location" # }, # { # "id": "s_995", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_564", # "name": "Loss of muscle mass, hands", # "common_name": "Loss of muscles in hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1083", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_622", # "parent_relation": "location" # }, # { # "id": "s_1070", # "name": "Loss of sense of vibration in distal parts of extremities", # "common_name": "Loss of sense of vibration in distal parts of extremities", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_747", # "name": "Loss of temperature sensation, impaired temperature sensation", # "common_name": "Loss of temperature sensation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1394", # "name": "Loss of the lingual papillae", # "common_name": "Loss of taste buds", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1027", # "name": "Loss of vision in a superior quadrant", # "common_name": "Loss of vision in a superior quadrant", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "character" # }, # { # "id": "s_746", # "name": "Loss or impairment of proprioception", # "common_name": "Loss or impairment of proprioception", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_155", # "name": "Low self-esteem", # "common_name": "Low sense of self-worth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1404", # "name": "Lower intraocular pressure (> 4-5mmHg) in affected eye compared to unaffected eye", # "common_name": "Lower intraocular pressure (> 4-5mmHg) in affected eye compared to unaffected eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1618", # "name": "Lower limb tenderness", # "common_name": "Tender leg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1622", # "name": "Lower limb tenderness, calf", # "common_name": "Tender lower leg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1620", # "parent_relation": "location" # }, # { # "id": "s_1173", # "name": "Lump in scrotum", # "common_name": "Lump in scrotum", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_420", # "name": "Lying about eating, hiding food", # "common_name": "Lying about eating, hiding food", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2029", # "name": "Lying to hide the extent of your gambling", # "common_name": "Lying to hide the extent of your gambling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2032", # "parent_relation": "severity" # }, # { # "id": "s_1733", # "name": "Lymph node pain", # "common_name": "Painful lymph nodes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2077", # "name": "Major bleeding", # "common_name": "Major bleeding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_779", # "name": "Making rash or impulsive decisions", # "common_name": "Making rash or impulsive decisions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_289", # "name": "Malocclusions", # "common_name": "Malocclusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1110", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1403", # "name": "Marcus Gunn pupil", # "common_name": "Marcus Gunn pupil", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_665", # "name": "Measles rash", # "common_name": "Measles rash", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_666", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1261", # "name": "Mendel-Bechterev sign", # "common_name": "Mendel-Bechterev sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_415", # "name": "Menstrual period more than three weeks late", # "common_name": "Menstrual period more than three weeks late", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1768", # "name": "Mental disturbances exacerbated by stress", # "common_name": "Mental disturbances exacerbated by stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_360", # "name": "Microstomia", # "common_name": "Narrow mouth, difficulty opening mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2078", # "name": "Minor uncontrollable bleeding", # "common_name": "Minor uncontrollable bleeding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_537", # "name": "Miosis", # "common_name": "Constriction of the pupil", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_212", # "name": "Miscarriage", # "common_name": "Miscarriage", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1274", # "name": "Moniz sign", # "common_name": "Moniz sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_646", # "name": "Mood swings", # "common_name": "Mood swings", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_730", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_258", # "name": "Morning stiffness of hand joints", # "common_name": "Morning stiffness of hand joints", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_575", # "parent_relation": "character" # }, # { # "id": "s_1297", # "name": "Motor retardation", # "common_name": "Slowed movements", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1104", # "name": "Mouth breathing", # "common_name": "Mouth breathing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1", # "name": "Mouth ulcers", # "common_name": "Mouth ulcers", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_afty.png", # "image_source": "Wikimedia Commons", # "parent_id": "s_694", # "parent_relation": "character" # }, # { # "id": "s_1210", # "name": "Mucosal pallor", # "common_name": "Mucosal pallor", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1213", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1213", # "name": "Mucosal pallor, sudden", # "common_name": "Sudden paleness of mucous membranes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1210", # "parent_relation": "duration" # }, # { # "id": "s_642", # "name": "Mucous secretion in stool", # "common_name": "Mucous secretion in stool", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_567", # "name": "Murphy's sign", # "common_name": "Stomach pain on deep inhalation and simultaneous pressing right upper part of abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1528", # "parent_relation": "base" # }, # { # "id": "s_503", # "name": "Muscle cramps", # "common_name": "Muscle cramps", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_117", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_650", # "name": "Muscle weakness", # "common_name": "Muscle weakness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_744", # "parent_relation": "location" # }, # { # "id": "s_766", # "parent_relation": "location" # }, # { # "id": "s_743", # "parent_relation": "location" # }, # { # "id": "s_767", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_744", # "name": "Muscle weakness, ascending", # "common_name": "Ascending muscle weakness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_650", # "parent_relation": "location" # }, # { # "id": "s_766", # "name": "Muscle weakness, large proximal muscles", # "common_name": "Muscle weakness mainly in upper arms or thighs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_650", # "parent_relation": "location" # }, # { # "id": "s_743", # "name": "Muscle weakness, legs", # "common_name": "Leg weakness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_650", # "parent_relation": "location" # }, # { # "id": "s_767", # "name": "Muscle weakness, standing up or climbing stairs", # "common_name": "Muscle weakness, standing up or climbing stairs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_650", # "parent_relation": "character" # }, # { # "id": "s_1142", # "name": "Myalgia", # "common_name": "Muscle pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1766", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_748", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_748", # "name": "Myalgia, deep and dull", # "common_name": "Deep and dull muscle pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1142", # "parent_relation": "base" # }, # { # "id": "s_1766", # "name": "Myalgia, exacerbated by stress", # "common_name": "Muscle pain triggered by increased stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1142", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_536", # "name": "Mydriasis", # "common_name": "Dilated pupils", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1476", # "name": "Myringitis", # "common_name": "Myringitis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_603", # "name": "Nail clubbing", # "common_name": "Enlarged finger tips", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://upload.wikimedia.org/wikipedia/commons/c/cd/Acopaquia.jpg", # "image_source": "Wiki Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1167", # "name": "Nail dystrophy", # "common_name": "Nail deformation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2005", # "name": "Nail pain", # "common_name": "Sore nail", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_107", # "name": "Nasal catarrh", # "common_name": "Runny nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_331", # "name": "Nasal congestion", # "common_name": "Stuffy nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1812", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1812", # "name": "Nasal congestion, chronic", # "common_name": "Chronic stuffy nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_331", # "parent_relation": "duration" # }, # { # "id": "s_524", # "name": "Nasal polyps", # "common_name": "Polyps in nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1303", # "name": "Nasal speech", # "common_name": "Nasal voice", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_156", # "name": "Nausea", # "common_name": "Feeling sick", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1388", # "name": "Neck asymmetry", # "common_name": "Asymmetrical neck", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1483", # "name": "Neck pain", # "common_name": "Neck pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2173", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_965", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2173", # "name": "Neck pain, during head movement", # "common_name": "Neck pain appearing or worsening during head movement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1483", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_965", # "name": "Neck pain, unilateral", # "common_name": "Neck pain on one side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1483", # "parent_relation": "location" # }, # { # "id": "s_671", # "name": "Neck vein distention", # "common_name": "Widened neck veins", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_327", # "name": "Need to smoke cigarette when waking up", # "common_name": "Need to smoke cigarette when waking up", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_195", # "parent_relation": "severity" # }, # { # "id": "s_820", # "name": "Neglecting family, work, or hobbies due to alcohol", # "common_name": "Neglecting other duties and activities due to drinking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_326", # "name": "Neglecting obligations such as work, study, or family to pursue sex or think about sex", # "common_name": "Neglecting other duties to pursue sex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_143", # "name": "Nervousness or weepiness", # "common_name": "Nervousness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1086", # "name": "Neural tenderness", # "common_name": "Neural tenderness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2080", # "name": "Neurological deficit, since less than 24 hours", # "common_name": "New neurological changes, since less than 24 hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2083", # "name": "Neurological deficit, since more than 24 hours", # "common_name": "New neurological changes, lasting over 24 hours", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_678", # "name": "Nihilistic delusions", # "common_name": "Nihilistic delusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_1422", # "name": "Nipple discharge", # "common_name": "Leaking from the nipple", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2172", # "name": "No signs of upper respiratory infection", # "common_name": "No signs of upper respiratory infection", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_182", # "name": "Nocturia", # "common_name": "Urinating at night", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_300", # "name": "Nodule located in breast", # "common_name": "Lump in the breast", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1831", # "parent_relation": "location" # }, # { # "id": "s_1217", # "name": "Nonmenstrual vaginal bleeding or spotting", # "common_name": "Nonmenstrual vaginal bleeding or spotting", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_822", # "name": "Nonstop drinking for several days", # "common_name": "Nonstop drinking for several days", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2168", # "name": "Normal body temperature", # "common_name": "Normal body temperature", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2169", # "name": "Normal heart rate", # "common_name": "Normal pulse", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2171", # "name": "Normal lung sounds on auscultation", # "common_name": "Normal lung sounds on auscultation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2174", # "name": "Normal vital signs", # "common_name": "Normal vital signs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1605", # "name": "Nose pain", # "common_name": "Nose pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2016", # "name": "Nosebleed, single episode", # "common_name": "Single episode of bleeding from the nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1429", # "parent_relation": "base" # }, # { # "id": "s_1429", # "name": "Nosebleeds", # "common_name": "Bleeding from nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2017", # "parent_relation": "character" # }, # { # "id": "s_2016", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2017", # "name": "Nosebleeds, recurrent", # "common_name": "Recurrent bleeding from the nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1429", # "parent_relation": "character" # }, # { # "id": "s_1305", # "name": "Numbness of part of ear", # "common_name": "Loss of feeling in part of ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1148", # "name": "Numbness of tongue", # "common_name": "Loss of feeling in tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_377", # "name": "Numerous nevi", # "common_name": "Many birthmarks", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_479", # "name": "Nystagmus", # "common_name": "Nystagmus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1721", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1721", # "name": "Nystagmus, horizontal", # "common_name": "Horizontal nystagmus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_479", # "parent_relation": "character" # }, # { # "id": "s_127", # "name": "Obsessions", # "common_name": "Obsessive thoughts", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_687", # "parent_relation": "base" # }, # { # "id": "s_688", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_687", # "name": "Obsessions, fears", # "common_name": "Obsessive worries", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_127", # "parent_relation": "base" # }, # { # "id": "s_688", # "name": "Obsessions, images", # "common_name": "Dark thoughts", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_127", # "parent_relation": "base" # }, # { # "id": "s_1237", # "name": "Ocular bulb rotation laterally and downward", # "common_name": "Eye rotation sideways and downward", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1236", # "parent_relation": "character" # }, # { # "id": "s_1234", # "name": "Ocular bulb rotation medially and upward", # "common_name": "Eye rotation upward and centrally", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1228", # "parent_relation": "character" # }, # { # "id": "s_750", # "name": "Ocular motility disorder", # "common_name": "Difficulty moving eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1147", # "name": "Oculomotor nerve palsy", # "common_name": "Oculomotor nerve palsy", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_509", # "name": "Odynophagia", # "common_name": "Painful swallowing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_362", # "name": "Oily skin", # "common_name": "Oily skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1877", # "name": "Oligomenorrhea", # "common_name": "Menstrual periods more than 35 days apart", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_185", # "name": "Oliguria", # "common_name": "Low urine output", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1313", # "name": "One finger pain", # "common_name": "One finger pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_554", # "parent_relation": "location" # }, # { # "id": "s_1107", # "name": "Opacified tympanic membrane", # "common_name": "Opacified tympanic membrane", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_389", # "name": "Open comedones", # "common_name": "Blackheads", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1256", # "name": "Oppenheim sign", # "common_name": "Oppenheim sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1410", # "name": "Optic disc neovascularization", # "common_name": "Optic disc neovascularization", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1329", # "name": "Optic nerve disc pallor", # "common_name": "Optic nerve disc pallor", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_868", # "name": "Orbicularis oris muscle spasm", # "common_name": "Orbicularis oris muscle spasm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_844", # "name": "Organic cause", # "common_name": "Organic cause", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_541", # "name": "Orthostatic hypotension", # "common_name": "Feeling dizzy or faint after standing up quickly", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1719", # "name": "Osler nodes", # "common_name": "Osler nodes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1982", # "parent_relation": "base" # }, # { # "id": "s_1289", # "name": "Ovarian enlargement", # "common_name": "Ovarian enlargement", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1110", # "name": "Overbite", # "common_name": "Overbite", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_289", # "parent_relation": "character" # }, # { # "id": "s_371", # "name": "Overwork", # "common_name": "Working too much", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1180", # "name": "Pain behind ear", # "common_name": "Pain behind ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1382", # "name": "Pain caused by firm pressure on tibia", # "common_name": "Pain caused by firm pressure on tibia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2092", # "name": "Pain in both feet", # "common_name": "Feet pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1453", # "parent_relation": "location" # }, # { # "id": "s_2091", # "name": "Pain in both hands", # "common_name": "Pain in both hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1452", # "parent_relation": "location" # }, # { # "id": "s_1453", # "name": "Pain in both lower limbs", # "common_name": "Pain in both lower limbs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2092", # "parent_relation": "location" # }, # { # "id": "s_1112", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1112", # "name": "Pain in both lower limbs, stocking distribution", # "common_name": "Pain in both lower limbs, stocking distribution", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1453", # "parent_relation": "location" # }, # { # "id": "s_1452", # "name": "Pain in both upper limbs", # "common_name": "Pain in both upper limbs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2091", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_580", # "parent_relation": "location" # }, # { # "id": "s_28", # "name": "Pain in crotch", # "common_name": "Pain in crotch", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_60", # "parent_relation": "location" # }, # { # "id": "s_52", # "parent_relation": "location" # }, # { # "id": "s_1829", # "parent_relation": "location" # }, # { # "id": "s_34", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_34", # "name": "Pain in crotch, sudden", # "common_name": "Sudden crotch pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_28", # "parent_relation": "duration" # }, # { # "id": "s_554", # "name": "Pain in fingers or hand", # "common_name": "Pain in fingers or hand", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1313", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_580", # "parent_relation": "location" # }, # { # "id": "s_60", # "name": "Pain in glans penis", # "common_name": "Pain of the head of the penis", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-zoledzi.png", # "image_source": null, # "parent_id": "s_28", # "parent_relation": "location" # }, # { # "id": "s_1250", # "name": "Pain in groin during coughing, sneezing or laughing", # "common_name": "Pain in groin during coughing, sneezing or laughing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_579", # "name": "Pain in lower limb", # "common_name": "Pain in lower limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1618", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1620", # "parent_relation": "location" # }, # { # "id": "s_1893", # "parent_relation": "location" # }, # { # "id": "s_578", # "parent_relation": "location" # }, # { # "id": "s_1878", # "parent_relation": "location" # }, # { # "id": "s_1930", # "parent_relation": "severity" # }, # { # "id": "s_1927", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1620", # "name": "Pain in lower limb, calf", # "common_name": "Calf pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1622", # "parent_relation": "location" # }, # { # "id": "s_232", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "location" # }, # { # "id": "s_232", # "name": "Pain in lower limb, calf, severe while walking", # "common_name": "Severe calf pain while walking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_732", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1620", # "parent_relation": "character" # }, # { # "id": "s_732", # "name": "Pain in lower limb, calf, severe while walking, intermittent claudication", # "common_name": "Leg pain occurring during exertion and relieved by rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_232", # "parent_relation": "character" # }, # { # "id": "s_1930", # "name": "Pain in lower limb, severe", # "common_name": "Severe pain in lower limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "severity" # }, # { # "id": "s_1893", # "name": "Pain in lower limb, thigh", # "common_name": "Thigh pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "location" # }, # { # "id": "s_578", # "name": "Pain in one foot", # "common_name": "Foot pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1645", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "location" # }, # { # "id": "s_52", # "name": "Pain in scrotum", # "common_name": "Pain in scrotum", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-moszny.png", # "image_source": null, # "parent_id": "s_28", # "parent_relation": "location" # }, # { # "id": "s_430", # "name": "Pain in temporomandibular joint while yawning, chewing, or biting", # "common_name": "Pain in the jaw while yawning, chewing, or biting", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1961", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1878", # "name": "Pain in the back of the leg, above the heel", # "common_name": "Pain in the back of the leg, above the heel", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_579", # "parent_relation": "location" # }, # { # "id": "s_580", # "name": "Pain in upper limb", # "common_name": "Pain in upper limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1799", # "parent_relation": "location" # }, # { # "id": "s_1452", # "parent_relation": "location" # }, # { # "id": "s_554", # "parent_relation": "location" # }, # { # "id": "s_1935", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1935", # "name": "Pain in upper limb, severe", # "common_name": "Severe pain in upper limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_580", # "parent_relation": "severity" # }, # { # "id": "s_476", # "name": "Pain increases when touching ear area", # "common_name": "Pain increases when touching ear area", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_47", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_54", # "name": "Pain near eye socket", # "common_name": "Pain near eye socket", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/bol-w-okolicach-oczodolu.png", # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_39", # "name": "Pain while urinating", # "common_name": "Pain while urinating", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1393", # "name": "Painful defecation", # "common_name": "Painful bowel movements", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_33", # "name": "Painful ejaculation", # "common_name": "Painful ejaculation", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_32", # "name": "Painful intercourse", # "common_name": "Painful sex", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2119", # "name": "Painless wound", # "common_name": "Painless wound", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1980", # "parent_relation": "character" # }, # { # "id": "s_1371", # "name": "Palatine petechiae", # "common_name": "Pinpoint spots on the soft palate", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_694", # "parent_relation": "character" # }, # { # "id": "s_10", # "name": "Pale and brittle nails", # "common_name": "Pale and brittle nails", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_569", # "name": "Pale or clay-colored stools", # "common_name": "Pale or clay-colored stools", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_9", # "name": "Pale skin", # "common_name": "Pale skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1209", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_298", # "name": "Palpable neck mass", # "common_name": "Palpable neck mass", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_110", # "name": "Palpitations", # "common_name": "Palpitations", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_2004", # "parent_relation": "character" # }, # { # "id": "s_2002", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2002", # "name": "Palpitations, over 5 minutes", # "common_name": "Irregular heart rhythm lasting longer than 5 minutes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_110", # "parent_relation": "duration" # }, # { # "id": "s_2004", # "name": "Palpitations, recurrent", # "common_name": "Palpitations, recurrent", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_110", # "parent_relation": "character" # }, # { # "id": "s_722", # "name": "Panic attacks in public appearances", # "common_name": "Panic attacks in public appearances", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_803", # "name": "Papilledema", # "common_name": "Papilledema", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_101", # "name": "Papule or nodule smaller than 1 cm in diameter", # "common_name": "Skin bump less than 1 cm in diameter", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_756", # "parent_relation": "character" # }, # { # "id": "s_1561", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1831", # "parent_relation": "character" # }, # { # "id": "s_838", # "name": "Paralogical thinking", # "common_name": "Paralogical thinking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1296", # "name": "Paralysis, limb", # "common_name": "Limb paralysis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1486", # "name": "Paraspinal muscle tenderness", # "common_name": "Paraspinal muscle tenderness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_148", # "name": "Paresis, limb", # "common_name": "Partial limbs paralysis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_268", # "parent_relation": "location" # }, # { # "id": "s_1079", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_268", # "name": "Paresis, limb, upper limbs", # "common_name": "Difficulty moving upper limbs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_148", # "parent_relation": "location" # }, # { # "id": "s_518", # "name": "Paresthesia", # "common_name": "Body tingling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_971", # "parent_relation": "location" # }, # { # "id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_1932", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_126", # "name": "Paresthesia around the mouth", # "common_name": "Tingling around the mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_971", # "parent_relation": "location" # }, # { # "id": "s_1066", # "name": "Paresthesia in both upper limbs, glove distribution", # "common_name": "Paresthesia in both upper limbs, glove distribution", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_973", # "parent_relation": "location" # }, # { # "id": "s_125", # "name": "Paresthesia in feet", # "common_name": "Foot tingling or numbness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_1069", # "name": "Paresthesia, ascending", # "common_name": "Ascending paresthesias", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_1063", # "name": "Paresthesia, both lower limbs", # "common_name": "Numbness of both lower limbs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_973", # "name": "Paresthesia, both upper limbs", # "common_name": "Numbness of both upper limbs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1066", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_971", # "name": "Paresthesia, face", # "common_name": "Face numbness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_126", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_518", # "parent_relation": "location" # }, # { # "id": "s_83", # "name": "Paresthesia, limbs", # "common_name": "Numbness of limbs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_125", # "parent_relation": "location" # }, # { # "id": "s_1069", # "parent_relation": "location" # }, # { # "id": "s_1063", # "parent_relation": "location" # }, # { # "id": "s_973", # "parent_relation": "location" # }, # { # "id": "s_2001", # "parent_relation": "location" # }, # { # "id": "s_1449", # "parent_relation": "location" # }, # { # "id": "s_1068", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_518", # "parent_relation": "location" # }, # { # "id": "s_2001", # "name": "Paresthesia, one lower limb", # "common_name": "Numbness in one lower limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_1449", # "name": "Paresthesia, one upper limb", # "common_name": "Numbness of one upper limb", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_1932", # "name": "Paresthesia, sudden onset", # "common_name": "Numbness or tingling of sudden onset", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_518", # "parent_relation": "base" # }, # { # "id": "s_1068", # "name": "Paresthesias, symmetrical", # "common_name": "Symmetrical paresthesias", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_83", # "parent_relation": "location" # }, # { # "id": "s_529", # "name": "Parotid swelling", # "common_name": "Parotid swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1057", # "parent_relation": "location" # }, # { # "id": "s_1800", # "name": "Past appendectomy", # "common_name": "Appendix removal in the past", # "sex_filter": "both", # "category": "Other", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1801", # "name": "Past cholecystectomy", # "common_name": "Gallbladder removal in the past", # "sex_filter": "both", # "category": "Other", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1715", # "name": "Pathologic fractures", # "common_name": "Broken bone without having had an accident", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_795", # "name": "Pencil-thin stools", # "common_name": "Pencil-thin stools", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2043", # "name": "Penile itching", # "common_name": "Penile itching", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_253", # "parent_relation": "location" # }, # { # "id": "s_1380", # "name": "Pericardial friction rub", # "common_name": "Pericardial friction rub", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1312", # "name": "Perionychial pain", # "common_name": "Pain of the skin around the nail", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2084", # "name": "Periorbital ecchymosis", # "common_name": "Bruising around the eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1018", # "name": "Perseveration", # "common_name": "Perseveration", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_594", # "name": "Petechiae", # "common_name": "Small red spots on the skin, not fading under pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1367", # "name": "Pharyngeal erythema", # "common_name": "Red throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_20", # "name": "Pharyngeal pain", # "common_name": "Sore throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1826", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1826", # "name": "Pharyngeal pain, unilateral", # "common_name": "One-sided sore throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_20", # "parent_relation": "location" # }, # { # "id": "s_1102", # "name": "Pharyngeal swelling, bilateral", # "common_name": "Swelling on both sides of throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1390", # "name": "Pharyngeal swelling, unilateral", # "common_name": "One-sided throat swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_915", # "name": "Phobia", # "common_name": "Phobia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_120", # "parent_relation": "character" # }, # { # "id": "s_2088", # "name": "Physical injury symptom", # "common_name": "Injury", # "sex_filter": "both", # "category": "Other", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_281", # "name": "Physical trauma (to self or others) after drinking alcohol", # "common_name": "Physical trauma (to self or others) after drinking alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1379", # "name": "Pill-rolling tremor", # "common_name": "Pill-rolling tremor", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "character" # }, # { # "id": "s_1437", # "name": "Pleural effusion", # "common_name": "Pleural effusion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1396", # "name": "Pleural friction rub", # "common_name": "Pleural friction rub", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2112", # "name": "Pleuritic chest pain after an injury", # "common_name": "Sudden and sharp chest pain after an injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_770", # "name": "Poor personal hygiene", # "common_name": "Poor personal hygiene", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1093", # "name": "Positive allergy challenge", # "common_name": "Positive allergy challenge", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1092", # "name": "Positive skin allergy (prick or patch) test", # "common_name": "Positive skin allergy (prick or patch) test", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2175", # "name": "Possible rabies exposure", # "common_name": "Animal bite", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1471", # "name": "Postnasal drip", # "common_name": "Mucus dripping at the back of the throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_225", # "name": "Premature graying", # "common_name": "Premature graying", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_69", # "name": "Preoccupation with food", # "common_name": "Preoccupation with food", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1323", # "name": "Presence of neurofibromas", # "common_name": "Presence of neurofibromas", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1162", # "name": "Pretibial myxedema", # "common_name": "Pretibial myxedema", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1397", # "name": "Priapism", # "common_name": "Prolonged erection", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_123", # "name": "Problems with everyday tasks such as washing, eating, dressing", # "common_name": "Problems with everyday tasks such as washing, eating, dressing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_593", # "name": "Prolonged bleeding time", # "common_name": "Prolonged bleeding time", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_777", # "name": "Prolonged nighttime sleep", # "common_name": "Prolonged nighttime sleep", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_319", # "parent_relation": "character" # }, # { # "id": "s_1089", # "name": "Prostate enlargement", # "common_name": "Prostate enlargement", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_254", # "name": "Pruritus", # "common_name": "Itching of skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_253", # "parent_relation": "location" # }, # { # "id": "s_2033", # "parent_relation": "location" # }, # { # "id": "s_1617", # "parent_relation": "location" # }, # { # "id": "s_251", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_250", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_251", # "name": "Pruritus, aggravated by change in temperature, sweating, or wearing wool", # "common_name": "Itching aggravated by changes in temperature, sweat, or wearing wool", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_254", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_2033", # "name": "Pruritus, foot", # "common_name": "Itching of a foot or feet", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_254", # "parent_relation": "location" # }, # { # "id": "s_250", # "name": "Pruritus, most intense at night", # "common_name": "Itching most intense at night", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_254", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1617", # "name": "Pruritus, scalp", # "common_name": "Itching of the scalp", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_254", # "parent_relation": "location" # }, # { # "id": "s_1548", # "name": "Pseudomembrane in throat or nose", # "common_name": "Gray layer in throat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_649", # "name": "Psychomotor retardation", # "common_name": "Psychomotor retardation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_653", # "name": "Pupil dilation variation", # "common_name": "Pupil dilation variation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1238", # "name": "Pupil or pupils unreactive to accomodation", # "common_name": "Pupil or pupils unreactive to accomodation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_762", # "name": "Purpuric rash", # "common_name": "Rash with small red or purple spots, not fading under pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_1915", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_417", # "parent_relation": "character" # }, # { # "id": "s_1915", # "name": "Purpuric rash, palpable", # "common_name": "Rash with small, red or purple spots, that can be felt, not fading under pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_762", # "parent_relation": "character" # }, # { # "id": "s_1315", # "name": "Pus under the skin of the finger", # "common_name": "Pus under the skin of the finger", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_388", # "name": "Pustule", # "common_name": "Vesicles filled with pus, up to 1 cm in diameter", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_989", # "name": "Pyramidal signs", # "common_name": "Pyramidal signs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_637", # "name": "Quickening of thoughts and speech", # "common_name": "Quickening of thoughts and speech", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_417", # "name": "Rash", # "common_name": "Rash", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_762", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_706", # "name": "Re-experiencing the psychological trauma in nightmares", # "common_name": "Re-experiencing the traumatic event in nightmares", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_705", # "name": "Re-experiencing the psychological trauma in recurring flashbacks", # "common_name": "Re-experiencing the traumatic event in recurring distressing memories", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_708", # "name": "Re-experiencing the psychological trauma through physiological reactivity", # "common_name": "Strong physiological reactions while re-experiencing the traumatic event", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_707", # "name": "Re-experiencing traumatic event", # "common_name": "Re-experiencing traumatic event", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1494", # "name": "Rebound tenderness", # "common_name": "Rebound tenderness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_528", # "name": "Recent alcohol consumption", # "common_name": "Recent alcohol consumption", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_165", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2079", # "name": "Recent injury without bleeding", # "common_name": "Recent injury without bleeding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1029", # "name": "Receptive aphasia", # "common_name": "Receptive aphasia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_969", # "parent_relation": "character" # }, # { # "id": "s_142", # "name": "Recurrent gastric ulcers", # "common_name": "Recurrent gastric ulcers", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_139", # "name": "Recurrent tonsils inflammation", # "common_name": "Recurrent tonsils inflammation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_72", # "name": "Red and stinging conjunctivae", # "common_name": "Red and stinging eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_201", # "parent_relation": "base" # } # ], # "image_url": "http://static.doktor-medi.pl/images/s_czerwone_piekace_spojowki.png", # "image_source": "Wikimedia Commons", # "parent_id": "s_492", # "parent_relation": "base" # }, # { # "id": "s_692", # "name": "Red and swollen oral mucosa", # "common_name": "Red and swollen oral mucosa", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_492", # "name": "Red eye", # "common_name": "Bloodshot eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_72", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_384", # "name": "Red maculas with silver-white, flaky scales", # "common_name": "Red skin patches with silver-white, flaky scales", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1469", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1470", # "parent_relation": "base" # }, # { # "id": "s_1301", # "name": "Red macules", # "common_name": "Red spots", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1377", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_73", # "name": "Red stretch marks on abdomen, hips or thighs", # "common_name": "Red stretch marks on abdomen, hips or thighs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_czerwone_rozstepy_brzuch_biodra_uda.png", # "image_source": "Wikimedia Commons", # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1181", # "name": "Redness behind the ear", # "common_name": "Redness behind the ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1145", # "name": "Redness in temporal region", # "common_name": "Pain and redness in the area of the temple", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_758", # "name": "Redness on shoulders and nape of neck", # "common_name": "Redness on the shoulders and the back of the neck", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://cdn.lifeinthefastlane.com/wp-content/uploads/2010/10/shawl_sign.jpeg", # "image_source": null, # "parent_id": "s_229", # "parent_relation": "location" # }, # { # "id": "s_410", # "name": "Reduced body temperature", # "common_name": "Reduced body temperature", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_572", # "name": "Reduced degree of facial expression", # "common_name": "Face lacking expression or animation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2008", # "name": "Regular uterine contractions", # "common_name": "Regular uterine contractions", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_330", # "name": "Regurgitation", # "common_name": "Food coming back up into the mouth", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2121", # "parent_relation": "base" # }, # { # "id": "s_780", # "name": "Religious delusion", # "common_name": "Religious delusion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2098", # "parent_relation": "base" # }, # { # "id": "s_2076", # "name": "Respiratory distress (trauma related)", # "common_name": "Breathing problems after injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_186", # "name": "Restricted mobility, problem bending over", # "common_name": "Difficulty bending down", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1903", # "name": "Restricted passive range of joint motion", # "common_name": "Restricted passive range of joint motion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1713", # "parent_relation": "character" # }, # { # "id": "s_1713", # "name": "Restricted range of joint motion", # "common_name": "Restricted range of joint motion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1903", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1418", # "name": "Retinal artery occlusions", # "common_name": "Retinal artery occlusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1344", # "name": "Retinal hemorrhage", # "common_name": "Retinal hemorrhage", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1412", # "name": "Retinal microaneurysms", # "common_name": "Retinal microaneurysms", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1415", # "name": "Retinal neovascularization elsewhere", # "common_name": "Retinal neovascularization elsewhere", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1414", # "name": "Retinal swelling", # "common_name": "Retinal swelling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_343", # "name": "Retraction or indentation of nipple", # "common_name": "Change in the nipple", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_zmiana_brodawki_sutkowej_wciagniecie.png", # "image_source": "Wikimedia Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1055", # "name": "Retrobulbar neuritis", # "common_name": "Retrobulbar neuritis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1533", # "name": "Rhinitis triggered by environment", # "common_name": "Runny or stuffed nose triggered by environment", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1682", # "name": "Rhinophyma", # "common_name": "Ruddy, bulbous nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_816", # "name": "Risky drinking", # "common_name": "Risky drinking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1738", # "name": "Romberg's sign", # "common_name": "Romberg's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1377", # "name": "Rose spots on lower chest and abdomen", # "common_name": "Rose spots on lower chest and abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1301", # "parent_relation": "location" # }, # { # "id": "s_1255", # "name": "Rossolimo's sign", # "common_name": "Rossolimo's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1732", # "name": "Rovsing's sign", # "common_name": "Rovsing's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1141", # "name": "Russell's sign", # "common_name": "Russell's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1285", # "name": "Sagging of the palate ipsilateral to suspected nerve damage", # "common_name": "Sagging of the palate ipsilateral to suspected nerve damage", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1544", # "name": "Scarlet fever rash", # "common_name": "Scarlet fever rash", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1259", # "name": "Schaeffer's sign", # "common_name": "Schaeffer's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_836", # "name": "Schizophasia", # "common_name": "Schizophasia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1492", # "name": "Scleral icterus", # "common_name": "Yellow eyes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_124", # "name": "Scotoma, eye floaters", # "common_name": "Black spots in vision", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1342", # "name": "Scrotal transillumination", # "common_name": "Scrotal transillumination", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_835", # "name": "Seasonal pattern of depressive symptoms", # "common_name": "Seasonal pattern of depressive symptoms", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_169", # "parent_relation": "character" # }, # { # "id": "s_829", # "name": "Secret drinking", # "common_name": "Secret drinking", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2045", # "name": "Seizures", # "common_name": "Seizures", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_189", # "parent_relation": "base" # }, # { # "id": "s_539", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_189", # "name": "Seizures with loss of consciousness", # "common_name": "Seizures with loss of consciousness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2045", # "parent_relation": "base" # }, # { # "id": "s_539", # "name": "Seizures without loss of consciousness", # "common_name": "Seizures without loss of consciousness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2045", # "parent_relation": "base" # }, # { # "id": "s_568", # "name": "Self-disgust after binge eating", # "common_name": "Self-disgust after binge eating", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_137", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_423", # "name": "Sense of self-worth dependent on weight", # "common_name": "Sense of self-worth dependent on weight", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_972", # "name": "Sensory loss in both arms", # "common_name": "Loss of feeling in both arms", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_313", # "name": "Sensory loss in one limb", # "common_name": "Loss of feeling in only one arm or leg", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_959", # "name": "Sensory loss involving the face", # "common_name": "Loss of feeling in face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [ # { # "id": "s_1159", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2089", # "name": "Serious injury, respiratory difficulty, severe bleeding, new neurological problem", # "common_name": "Serious injury, respiratory difficulty, severe bleeding, new neurological problem", # "sex_filter": "both", # "category": "Other", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2081", # "name": "Severe pain, trauma related", # "common_name": "Severe pain after injury", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2", # "name": "Sexual activity in recent months", # "common_name": "Sexual activity in recent months", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_74", # "name": "Sexual activity more often or with more partners than intended", # "common_name": "Sexual activity more often or with more partners than intended", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1399", # "name": "Shafer's sign", # "common_name": "Shafer's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1462", # "name": "Shallow breathing", # "common_name": "Shallow breathing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_88", # "parent_relation": "base" # }, # { # "id": "s_648", # "name": "Simple auditory paradelusions", # "common_name": "Simple auditory paradelusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_647", # "name": "Simple visual paradelusions", # "common_name": "Simple visual paradelusions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1496", # "name": "Sinuses tender to palpation", # "common_name": "Sinuses tender to palpation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_654", # "name": "Skin and blood vessel inflammation", # "common_name": "Skin and blood vessel inflammation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1470", # "name": "Skin desquamation", # "common_name": "Skin shedding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_384", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "base" # }, # { # "id": "s_1831", # "name": "Skin mass", # "common_name": "Skin mass", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_300", # "parent_relation": "location" # }, # { # "id": "s_101", # "parent_relation": "character" # }, # { # "id": "s_1830", # "parent_relation": "character" # }, # { # "id": "s_1931", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1830", # "name": "Skin mass greater than 1 cm in diameter", # "common_name": "Skin bump greater than 1 cm in diameter", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1246", # "parent_relation": "location" # }, # { # "id": "s_1242", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1831", # "parent_relation": "character" # }, # { # "id": "s_1931", # "name": "Skin mass, bleeding", # "common_name": "Skin mass, bleeding", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1831", # "parent_relation": "character" # }, # { # "id": "s_382", # "name": "Skin mole or birthmark with diameter greater than 6 mm", # "common_name": "Skin mole or birthmark with diameter greater than 6 mm", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_383", # "parent_relation": "character" # }, # { # "id": "s_381", # "name": "Skin mole or birthmark with irregular border", # "common_name": "Skin mole or birthmark with irregular border", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_383", # "parent_relation": "character" # }, # { # "id": "s_1674", # "name": "Skin pain", # "common_name": "Skin pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_43", # "parent_relation": "severity" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_43", # "name": "Skin pain, severe", # "common_name": "Severe skin pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1674", # "parent_relation": "severity" # }, # { # "id": "s_1209", # "name": "Skin pallor, sudden", # "common_name": "Sudden paleness of skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_9", # "parent_relation": "duration" # }, # { # "id": "s_376", # "name": "Skin phototype I or II", # "common_name": "Light or fair skin that easily burns", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1650", # "name": "Skin thickening", # "common_name": "Skin thickening", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1474", # "name": "Skull lesions", # "common_name": "Skull lesions", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_319", # "name": "Sleep disorder", # "common_name": "Sleep disorder", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_634", # "parent_relation": "character" # }, # { # "id": "s_917", # "parent_relation": "character" # }, # { # "id": "s_777", # "parent_relation": "character" # }, # { # "id": "s_776", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_238", # "name": "Slower gait", # "common_name": "Slower walk", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_93", # "name": "Smoking large quantity of cigarettes", # "common_name": "Smoking a lot", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_195", # "parent_relation": "severity" # }, # { # "id": "s_308", # "name": "Smoking most cigarettes in the morning", # "common_name": "Smoking most cigarettes in the morning", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_195", # "parent_relation": "severity" # }, # { # "id": "s_271", # "name": "Smooth face without wrinkles", # "common_name": "Smooth face without wrinkles", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_715", # "name": "Sneeze", # "common_name": "Sneeze", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_136", # "parent_relation": "duration" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_136", # "name": "Sneezing attacks", # "common_name": "Sneezing fits", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_715", # "parent_relation": "duration" # }, # { # "id": "s_67", # "name": "Snoring", # "common_name": "Snoring", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_659", # "name": "Social isolation", # "common_name": "Social isolation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_773", # "name": "Social maladjustment", # "common_name": "Social maladjustment", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1242", # "name": "Soft lump in inguinal region", # "common_name": "Soft lump in groin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1243", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1245", # "parent_relation": "character" # }, # { # "id": "s_1244", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_1830", # "parent_relation": "location" # }, # { # "id": "s_1244", # "name": "Soft lump in inguinal region, decreasing while supine", # "common_name": "Decrease of groin mass size while lying down", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1242", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_1243", # "name": "Soft lump in inguinal region, enlarging during increase in abdominal pressure", # "common_name": "Soft lump in inguinal region, enlarging during increase in abdominal pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1242", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1245", # "name": "Soft lump in inguinal region, reducible", # "common_name": "Groin mass possible to reduce into abdomen manually", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1242", # "parent_relation": "character" # }, # { # "id": "s_1347", # "name": "Soft retinal exudates", # "common_name": "Soft retinal exudates", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1426", # "name": "Spasms in upper extremities", # "common_name": "Spasms in upper extremities", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_992", # "name": "Spastic dysarthria", # "common_name": "Spastic dysarthria", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_315", # "parent_relation": "character" # }, # { # "id": "s_571", # "name": "Spasticity", # "common_name": "Increased muscle tension", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1281", # "parent_relation": "character" # }, # { # "id": "s_1283", # "parent_relation": "character" # }, # { # "id": "s_1282", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_213", # "name": "Spending a lot of time on sex-related activity", # "common_name": "Spending a lot of time on sex-related activity", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1536", # "name": "Spine asymmetry", # "common_name": "Spine asymmetry", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_259", # "name": "Spine or joint stiffness subsiding after exercise", # "common_name": "Spine or joint stiffness subsiding after exercise", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_575", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_1169", # "name": "Splenic agenesis", # "common_name": "Splenic agenesis", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1045", # "name": "Splenomegaly", # "common_name": "Enlarged spleen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1434", # "name": "Steatorrhea", # "common_name": "Fatty stools", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_8", # "parent_relation": "character" # }, # { # "id": "s_1270", # "name": "Sterling's sign", # "common_name": "Sterling's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1381", # "name": "Sternal rub", # "common_name": "Sternal rub", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_418", # "name": "Stiff neck", # "common_name": "Stiff neck", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_257", # "name": "Stiffness of spine in the morning", # "common_name": "Stiffness of spine in the morning", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_880", # "name": "Stimulants use (amphetamine, cocaine)", # "common_name": "Stimulants use (amphetamine, cocaine)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_201", # "name": "Stinging eyes and feeling of sand under eyelids", # "common_name": "Stinging eyes and feeling of sand under eyelids", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_72", # "parent_relation": "base" # }, # { # "id": "s_1260", # "name": "Stransky's sign", # "common_name": "Stransky's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1467", # "name": "Strawberry tongue", # "common_name": "Strawberry tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_607", # "parent_relation": "character" # }, # { # "id": "s_1562", # "name": "Stridor", # "common_name": "Stridor", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_474", # "parent_relation": "character" # }, # { # "id": "s_544", # "name": "Stroke", # "common_name": "Stroke", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1275", # "name": "Strumpell's sign", # "common_name": "Strumpell's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1067", # "name": "Sudden face flushing", # "common_name": "Sudden face flushing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_530", # "name": "Sudden increase in blood pressure", # "common_name": "Sudden increase in blood pressure", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_543", # "parent_relation": "character" # }, # { # "id": "s_1139", # "name": "Suicidal thoughts", # "common_name": "Suicidal thoughts", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [ # { # "id": "s_1140", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1140", # "name": "Suicidal thoughts with plan and steps taken", # "common_name": "Suicidal thoughts with plan and steps taken", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1139", # "parent_relation": "base" # }, # { # "id": "s_1943", # "name": "Sunburn", # "common_name": "Sunburn", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_698", # "name": "Sunken eyeballs", # "common_name": "Sunken eyeballs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_221", # "name": "Surface of lesion on genitals resembles cauliflower", # "common_name": "Growths on genitals resembling cauliflower", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_383", # "name": "Suspicious mole or birthmark", # "common_name": "Suspicious mole or birthmark on the skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_380", # "parent_relation": "character" # }, # { # "id": "s_585", # "parent_relation": "character" # }, # { # "id": "s_584", # "parent_relation": "character" # }, # { # "id": "s_382", # "parent_relation": "character" # }, # { # "id": "s_381", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_214", # "name": "Sweating on forehead on painful side", # "common_name": "Sweating on forehead on painful side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_217", # "name": "Sweating, night", # "common_name": "Night sweats", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_216", # "parent_relation": "character" # }, # { # "id": "s_1182", # "name": "Swelling in the mastoid region", # "common_name": "Swelling behind ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1099", # "name": "Swelling of nasal concha", # "common_name": "Swelling of nasal concha", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1097", # "name": "Swelling of nasal mucosa", # "common_name": "Swelling of nasal mucosa", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1098", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1144", # "name": "Swelling of temporal artery", # "common_name": "Swelling of temporal artery", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1098", # "name": "Swollen blue or bluish-gray nasal mucosa", # "common_name": "Swollen blue or bluish-gray nasal mucosa", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1097", # "parent_relation": "character" # }, # { # "id": "s_177", # "name": "Swollen cheek", # "common_name": "Swollen cheek", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_616", # "parent_relation": "location" # }, # { # "id": "s_172", # "name": "Swollen gums", # "common_name": "Swollen gums", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1081", # "name": "Symmetrical flaccid paresis in lower limbs (mainly feet)", # "common_name": "Symmetrical flaccid paresis in lower limbs (mainly feet)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1080", # "parent_relation": "location" # }, # { # "id": "s_1082", # "name": "Symmetrical flaccid paresis in upper limbs (mainly hands)", # "common_name": "Symmetrical flaccid paresis in upper limbs (mainly hands)", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1080", # "parent_relation": "location" # }, # { # "id": "s_162", # "name": "Symptoms appear after taking painkillers, change in diet", # "common_name": "Symptoms appear after taking painkillers, change in diet", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_602", # "name": "Symptoms do not occur during sleep", # "common_name": "Symptoms do not occur during sleep", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_558", # "name": "Symptoms exacerbated by cold temperature", # "common_name": "Symptoms exacerbated by cold temperature", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_160", # "name": "Symptoms increase in evening", # "common_name": "Symptoms increase in evening", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_165", # "name": "Symptoms occur several hours after drinking excessive alcohol", # "common_name": "Symptoms occur several hours after drinking excessive alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_528", # "parent_relation": "base" # }, # { # "id": "s_161", # "name": "Symptoms regularly appear a few days before menstrual period", # "common_name": "Symptoms regularly appear a few days before menstrual period", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_164", # "name": "Symptoms subside when menstrual period begins", # "common_name": "Symptoms subside when menstrual period begins", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_261", # "name": "Tachycardia", # "common_name": "Fast heartbeat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_227", # "name": "Tachypnea", # "common_name": "Accelerated breathing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1153", # "name": "Taste disorder in anterior two-thirds of tongue", # "common_name": "Taste disorder in anterior two-thirds of tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1096", # "parent_relation": "location" # }, # { # "id": "s_1096", # "name": "Taste disorders", # "common_name": "Abnormal or loss of taste", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1153", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_545", # "name": "Telangiectasias", # "common_name": "Spider veins", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1685", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_1685", # "name": "Telangiectasias, face", # "common_name": "Spider veins on the face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_545", # "parent_relation": "location" # }, # { # "id": "s_1465", # "name": "Temporary blindness", # "common_name": "Temporary blindness", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "duration" # }, # { # "id": "s_640", # "name": "Tenesmus", # "common_name": "Feeling of incomplete defecation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1114", # "name": "Terry's nails", # "common_name": "Terry's nails", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_487", # "name": "Thick eye discharge", # "common_name": "Thick eye discharge", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1790", # "name": "Thickened nails", # "common_name": "Thickened nails", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_386", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_386", # "name": "Thickened nails with pits or grooves", # "common_name": "Thickened nails with pits or grooves", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1790", # "parent_relation": "character" # }, # { # "id": "s_2039", # "name": "Third-degree burn", # "common_name": "Full-thickness skin burn", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1276", # "name": "Throckmorton's sign", # "common_name": "Throckmorton's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_555", # "name": "Tingling fingers", # "common_name": "Tingling fingers", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1899", # "parent_relation": "location" # }, # { # "id": "s_1900", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1899", # "name": "Tingling fingers, first three digits", # "common_name": "Tingling in the thumb, index finger, and middle finger", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_555", # "parent_relation": "location" # }, # { # "id": "s_1900", # "name": "Tingling fingers, fourth and fifth digits", # "common_name": "Tingling in the ring and little finger", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_555", # "parent_relation": "location" # }, # { # "id": "s_407", # "name": "Tinnitus", # "common_name": "Ringing in ears", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_937", # "parent_relation": "character" # }, # { # "id": "s_1466", # "parent_relation": "base" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_937", # "name": "Tinnitus, low frequency", # "common_name": "Rumbling in ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_407", # "parent_relation": "character" # }, # { # "id": "s_1466", # "name": "Tinnitus, pulsatile", # "common_name": "Pulsing sound in ears", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_407", # "parent_relation": "base" # }, # { # "id": "s_1833", # "name": "Toe pain", # "common_name": "Toe pain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_79", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1085", # "name": "Toenail dystrophy", # "common_name": "Degeneration of toenail", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_673", # "name": "Tongue enlargement", # "common_name": "Tongue enlargement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_607", # "name": "Tongue erythema", # "common_name": "Unusually red tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1467", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_995", # "name": "Tongue muscle atrophy", # "common_name": "Decline in tongue size", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_622", # "parent_relation": "location" # }, # { # "id": "s_1534", # "name": "Tonsil stones", # "common_name": "White or yellow formations in tonsils", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1050", # "name": "Tooth loss", # "common_name": "Tooth loss", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_551", # "name": "Toothache", # "common_name": "Toothache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_267", # "parent_relation": "location" # }, # { # "id": "s_55", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_56", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_231", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_233", # "parent_relation": "severity" # }, # { # "id": "s_339", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_55", # "name": "Toothache after contact with cold, sweet, or hot food", # "common_name": "Toothache after contact with cold, sweet, or hot food", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_551", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_56", # "name": "Toothache while chewing", # "common_name": "Toothache while chewing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_551", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_339", # "name": "Toothache, reduced after cold foods or drinks", # "common_name": "Cold foods or drinks ease toothache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_551", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_233", # "name": "Toothache, severe", # "common_name": "Severe toothache", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_551", # "parent_relation": "severity" # }, # { # "id": "s_231", # "name": "Toothache, strong reaction to heat", # "common_name": "Toothache worsened by heat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_551", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1100", # "name": "Transverse furrow on the nose", # "common_name": "Transverse furrow on the nose", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1421", # "name": "Tremor, flapping", # "common_name": "Flapping tremor", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "base" # }, # { # "id": "s_1264", # "name": "Tremor, intention", # "common_name": "Intention tremor", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "base" # }, # { # "id": "s_1454", # "name": "Tremor, kinetic", # "common_name": "Trembling during movement", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1455", # "name": "Tremor, resting", # "common_name": "Trembling at rest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "base" # }, # { # "id": "s_538", # "name": "Tremors", # "common_name": "Muscle trembling", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1454", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1765", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_601", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_87", # "parent_relation": "location" # }, # { # "id": "s_86", # "parent_relation": "location" # }, # { # "id": "s_590", # "parent_relation": "location" # }, # { # "id": "s_1379", # "parent_relation": "character" # }, # { # "id": "s_1421", # "parent_relation": "base" # }, # { # "id": "s_1264", # "parent_relation": "base" # }, # { # "id": "s_1455", # "parent_relation": "base" # }, # { # "id": "s_84", # "parent_relation": "diminishing_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_87", # "name": "Tremors, both hands", # "common_name": "Trembling of both hands", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "location" # }, # { # "id": "s_86", # "name": "Tremors, in one hand", # "common_name": "Trembling of one hand", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "location" # }, # { # "id": "s_1765", # "name": "Tremors, stress-related", # "common_name": "Trembling worsening under stress", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_84", # "name": "Tremors, subside after drinking alcohol", # "common_name": "Trembling subsiding after alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "diminishing_factor" # }, # { # "id": "s_590", # "name": "Tremors, tongue", # "common_name": "Trembling of tongue", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "location" # }, # { # "id": "s_601", # "name": "Tremors, worsen after caffeine intake", # "common_name": "Trembling worsening after caffeine", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_538", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_1056", # "name": "Trigeminal neuralgia", # "common_name": "Trigeminal neuralgia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_256", # "name": "Trismus", # "common_name": "Difficulty with mouth opening", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1262", # "name": "Tromner's sign", # "common_name": "Tromner's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1074", # "name": "Trophic changes", # "common_name": "Trophic changes", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1076", # "name": "Trophic ulcer", # "common_name": "Trophic ulcer", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1078", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1078", # "name": "Trophic ulcer on the plantar side of the foot", # "common_name": "Trophic ulcer on the plantar side of the foot", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1076", # "parent_relation": "location" # }, # { # "id": "s_691", # "name": "Trouble beginning urination", # "common_name": "Trouble beginning urination", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_644", # "name": "Trouble planning the future", # "common_name": "Trouble planning the future", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_866", # "name": "Trousseau sign of latent tetany", # "common_name": "Trousseau sign of latent tetany", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2163", # "name": "Twisted neck", # "common_name": "Twisted neck", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1366", # "name": "Tympanic membrane light reflex distortion", # "common_name": "Tympanic membrane light reflex distortion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_672", # "name": "Ulcer on skin", # "common_name": "Sore on the skin or mucous membrane", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1602", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_194", # "name": "Ulceration on nipple", # "common_name": "Ulceration on nipple", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_owrzodzenie_wyciek_z_brodawki.png", # "image_source": "Wikimedia Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_351", # "name": "Ulcerations or abscesses near the anus", # "common_name": "Ulcerations or abscesses near the anus", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_668", # "name": "Unilateral enophthalmos", # "common_name": "Sunken eye", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_149", # "name": "Unilateral facial paresis", # "common_name": "Facial weakness on one side of face", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1156", # "parent_relation": "base" # }, # { # "id": "s_1586", # "name": "Unilateral vulval swelling", # "common_name": "Labial swelling on one side", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_510", # "name": "Urethral discharge when pressing the penis", # "common_name": "Discharge when pressing penis", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_369", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_153", # "name": "Urinary incontinence", # "common_name": "Urinary incontinence", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_696", # "name": "Urinary retention", # "common_name": "Unable to urinate", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_690", # "name": "Urinary urgency", # "common_name": "Urgent need to urinate", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_689", # "name": "Urination in small amounts", # "common_name": "Urination in small amounts", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_183", # "name": "Urination while coughing or laughing or during physical exertion", # "common_name": "Urination while coughing or laughing or during physical exertion", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_393", # "name": "Urticaria", # "common_name": "Hives", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_791", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_793", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_790", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_789", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_794", # "parent_relation": "exacerbating_factor" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_241", # "parent_relation": "character" # }, # { # "id": "s_791", # "name": "Urticaria triggered by cold", # "common_name": "Hives appearing after exposure to cold, water, or wind", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_393", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_793", # "name": "Urticaria triggered by heat", # "common_name": "Hives appearing after exposure to heat", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_393", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_790", # "name": "Urticaria triggered by prolonged pressure on the skin", # "common_name": "Hives appearing after exposure to prolonged pressure on the skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_393", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_789", # "name": "Urticaria triggered by scratching", # "common_name": "Hives after scratching", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_393", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_794", # "name": "Urticaria triggered by sunlight", # "common_name": "Hives appearing after exposure to sunlight or UV radiation", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_393", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_243", # "name": "Using methods to lose weight: vomiting, starvation diets", # "common_name": "Using methods to lose weight: vomiting, starvation diets", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1287", # "name": "Uvula deviation towards unaffected side", # "common_name": "Uvula deviation towards unaffected side", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_759", # "name": "V-shaped redness on chest", # "common_name": "V-shaped redness on the chest", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://img.medscape.com/pi/emed/ckb/pediatrics_general/1331341-1331372-1417215-1483507tn.jpg", # "image_source": null, # "parent_id": "s_229", # "parent_relation": "location" # }, # { # "id": "s_64", # "name": "Vaginal discharge with unpleasant odor", # "common_name": "Vaginal discharge with unpleasant odor", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_328", # "parent_relation": "character" # }, # { # "id": "s_1569", # "name": "Vaginal discharge, scant, white, clumpy and odorless", # "common_name": "Vaginal discharge, scant, white, clumpy and odorless", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_328", # "parent_relation": "character" # }, # { # "id": "s_1811", # "name": "Vaginal dryness", # "common_name": "Vaginal dryness", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_2082", # "name": "Vascular compromise", # "common_name": "Limited blood supply past the injury site", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1031", # "name": "Verbal learning disability", # "common_name": "Verbal learning disability", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1318", # "name": "Vesicular exanthema of mouth or ear", # "common_name": "Blisters around mouth or ear", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1807", # "parent_relation": "location" # }, # { # "id": "s_824", # "name": "Violating social norms after drinking alcohol", # "common_name": "Violating social norms after drinking alcohol", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_290", # "name": "Visible and palpable enlarged vein of limb, chest or abdomen", # "common_name": "Visible and palpable enlarged vein of limb, chest or abdomen", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1792", # "name": "Visible head lice on scalp", # "common_name": "Visible head lice on scalp", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1034", # "name": "Visual agnosia", # "common_name": "Visual agnosia", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_833", # "parent_relation": "base" # }, # { # "id": "s_494", # "name": "Visual field narrowing", # "common_name": "Tunnel Vision", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_320", # "parent_relation": "character" # }, # { # "id": "s_1398", # "name": "Vitreous hemorrhage", # "common_name": "Vitreous hemorrhage", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_305", # "name": "Vomiting", # "common_name": "Vomiting", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1365", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_306", # "parent_relation": "character" # }, # { # "id": "s_1949", # "parent_relation": "character" # }, # { # "id": "s_801", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1949", # "name": "Vomiting, every time after meal", # "common_name": "Vomiting after every meal", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_305", # "parent_relation": "character" # }, # { # "id": "s_1365", # "name": "Vomiting, more often in the morning", # "common_name": "Vomiting more often in the morning", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_305", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_801", # "name": "Vomiting, projectile", # "common_name": "Vomiting that ejects with great force", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "emergency", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_305", # "parent_relation": "character" # }, # { # "id": "s_1875", # "name": "Vulvovaginal burning", # "common_name": "Vulvovaginal burning", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_630", # "name": "Vulvovaginal itching", # "common_name": "Vulvovaginal itching", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_253", # "parent_relation": "location" # }, # { # "id": "s_1829", # "name": "Vulvovaginal pain", # "common_name": "Vulvovaginal pain", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_28", # "parent_relation": "location" # }, # { # "id": "s_1219", # "name": "Waist-hip ratio (WHR) over 0.85 in women", # "common_name": "Waist-hip ratio (WHR) over 0.85 in women", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1218", # "name": "Waist-hip ratio (WHR) over 1.0 in men", # "common_name": "Waist-hip ratio (WHR) over 1.0 in men", # "sex_filter": "male", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_776", # "name": "Waking up early", # "common_name": "Waking up early", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_319", # "parent_relation": "character" # }, # { # "id": "s_1155", # "name": "Weak eye clenching", # "common_name": "Weak eye clenching", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1280", # "name": "Weak or absent pharyngeal reflex", # "common_name": "Weak or absent pharyngeal reflex", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1348", # "name": "Weak peripheral pulses", # "common_name": "Weak peripheral pulses", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_735", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_735", # "name": "Weak pulse in legs", # "common_name": "Weak pulse in legs", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1348", # "parent_relation": "location" # }, # { # "id": "s_1332", # "name": "Weakness exacerbates after exercise", # "common_name": "Weakness worsening after exercise", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_2100", # "parent_relation": "exacerbating_factor" # }, # { # "id": "s_226", # "name": "Weight gain", # "common_name": "Weight gain", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_285", # "name": "Weight loss", # "common_name": "Weight reduction", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_237", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_237", # "name": "Weight loss without loss of appetite", # "common_name": "Weight loss without loss of appetite", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_285", # "parent_relation": "character" # }, # { # "id": "s_1402", # "name": "Weiss ring", # "common_name": "Weiss ring", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1340", # "name": "Westphal's sign", # "common_name": "Westphal's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_474", # "name": "Wheezing, audible", # "common_name": "Whistling sound made while breathing", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1562", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1788", # "name": "White nail discoloration", # "common_name": "White nail discoloration", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1673", # "name": "White oral plaques", # "common_name": "White patches on the oral mucous membrane", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_694", # "parent_relation": "character" # }, # { # "id": "s_1796", # "name": "White patch on cornea", # "common_name": "White patch on cornea", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1183", # "name": "Winterbottom's sign", # "common_name": "Winterbottom's sign", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1937", # "name": "Worms in stool", # "common_name": "Worms in stool", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1980", # "name": "Wound", # "common_name": "Wound", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_1973", # "parent_relation": "character" # }, # { # "id": "s_2119", # "parent_relation": "character" # }, # { # "id": "s_1981", # "parent_relation": "character" # } # ], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1981", # "name": "Wound infection", # "common_name": "Wound infection", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1980", # "parent_relation": "character" # }, # { # "id": "s_342", # "name": "Wrinkling or dimpling of skin on breast", # "common_name": "Wrinkling or dimpling of skin on breast", # "sex_filter": "female", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": "http://static.doktor-medi.pl/images/s_zmarszczenie_wciagniecie_skory_na_piersi.png", # "image_source": "Wikimedia Commons", # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_1910", # "name": "Wrist drop", # "common_name": "Wrist drop", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "serious", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # }, # { # "id": "s_613", # "name": "Xanthelasma", # "common_name": "Yellow skin lesions on eyelids", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": "s_1561", # "parent_relation": "location" # }, # { # "id": "s_1561", # "name": "Xanthoma", # "common_name": "Yellowish deposits under skin", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [ # { # "id": "s_613", # "parent_relation": "location" # } # ], # "image_url": null, # "image_source": null, # "parent_id": "s_101", # "parent_relation": "character" # }, # { # "id": "s_1789", # "name": "Yellow nail discoloration", # "common_name": "Yellow nails", # "sex_filter": "both", # "category": "Signs and symptoms", # "seriousness": "normal", # "extras": {}, # "children": [], # "image_url": null, # "image_source": null, # "parent_id": null, # "parent_relation": null # } # ]
[ "arsilzunzunia@gmail.com" ]
arsilzunzunia@gmail.com
fb8d989bdc6571263abf65a3da0c0fad0a7523be
03b75594126205970b41da3d94e8607182e3be77
/render_app/migrations/0002_auto_20191014_0926.py
f6f25e96d1f2ae97bdbae31571ed22df085a656f
[]
no_license
anthodemorais/render
e0c1001036de52bfa3eb300f39f6b2f8607e0ac7
7a77ebf224edd43266c39f1b1460f357da2328b1
refs/heads/master
2023-04-30T20:54:57.932353
2021-06-14T19:21:12
2021-06-14T19:21:12
216,519,857
0
0
null
2023-04-21T20:39:35
2019-10-21T08:45:40
Python
UTF-8
Python
false
false
574
py
# Generated by Django 2.2.6 on 2019-10-14 09:26 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('render_app', '0001_initial'), ] operations = [ migrations.AlterField( model_name='project', name='user_id', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), ), migrations.DeleteModel( name='User', ), ]
[ "anthonyd-m@live.com" ]
anthonyd-m@live.com
910afd2efa42ada5dd22923f2a6c53a466fb5a1f
c577d0d804ef826131a8a959ed10879d3fdfef2a
/profiles/migrations/0008_auto_20190206_2142.py
88de9108773cc666cfb035325fb04299faba7c2f
[]
no_license
AlexFrundin/four
3d561e2f33e007e93b975b247752c06b392b1945
c937e0dc159f380abbcb5e646ebdf2a7a8fd6be0
refs/heads/master
2020-04-30T10:55:31.020357
2019-03-20T18:06:26
2019-03-20T18:06:26
176,788,979
0
0
null
null
null
null
UTF-8
Python
false
false
395
py
# Generated by Django 2.1.3 on 2019-02-06 19:42 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('profiles', '0007_auto_20190206_1917'), ] operations = [ migrations.AlterField( model_name='profile', name='birth', field=models.DateField(blank=True, null=True), ), ]
[ "aleksey.frundin@gmail.com" ]
aleksey.frundin@gmail.com
4c19d1c4ca2143d49702c83bd6fe7486af618b32
6df4a4cbdaf59009838b2c70b518e66633c67de0
/user_portrait/cron/recommentation_in/filter_rules.py
c4a58b227bbab39a9fd134e2bd2cc7cfcf24955f
[]
no_license
jianjian0dandan/user_portrait
ccf5f43f0aca2d40581faae215fdda1db997a354
3114ca2fcec23a7039887cca953793ef34cb7f72
refs/heads/master
2021-01-15T19:59:16.286276
2016-05-18T03:30:37
2016-05-18T03:30:37
42,869,391
0
0
null
2015-09-21T13:56:51
2015-09-21T13:56:51
null
UTF-8
Python
false
false
4,731
py
# -*- coding: UTF-8 -*- import sys import csv import json import time reload(sys) sys.path.append('../../') from global_utils import R_CLUSTER_FLOW2 as r_cluster from global_utils import R_DICT, es_retweet, retweet_index_name_pre, retweet_index_type from time_utils import datetime2ts, ts2datetime from parameter import DAY from parameter import RUN_TYPE, RUN_TEST_TIME from parameter import RECOMMEND_IN_ACTIVITY_THRESHOLD as activity_threshold from parameter import RECOMMEND_IN_IP_THRESHOLD as ip_threshold from parameter import RECOMMEND_IN_RETWEET_THRESHOLD as retweet_threshold from parameter import RECOMMEND_IN_MENTION_THRESHOLD as mention_threshold from cron.detect.cron_detect import get_db_num csvfile = open('/home/ubuntu8/huxiaoqian/user_portrait/user_portrait/cron/recommentation_in/filter_uid_list.csv', 'wb') writer = csv.writer(csvfile) def filter_activity(user_set): results = [] #run_type if RUN_TYPE == 1: now_date = ts2datetime(time.time()) else: now_date = RUN_TEST_TIME ts = datetime2ts(now_date) - DAY date = ts2datetime(ts) timestamp = datetime2ts(date) for user in user_set: over_count = 0 for i in range(0,7): ts = timestamp - DAY*i result = r_cluster.hget('activity_'+str(ts), str(user)) if result: items_dict = json.loads(result) for item in items_dict: weibo_count = items_dict[item] if weibo_count > activity_threshold: over_count += 1 if over_count == 0: results.append(user) else: writer.writerow([user, 'activity']) return results def filter_ip(user_set): results = [] #run_type if RUN_TYPE == 1: now_date = ts2datetime(time.time()) else: now_date = RUN_TEST_TIME ts = datetime2ts(now_date) - DAY for user in user_set: ip_set = set() for i in range(0,7): timestamp = ts - DAY*i ip_result = r_cluster.hget('ip_'+str(ts), str(user)) if ip_result: result_dict = json.loads(ip_result) else: result_dict = {} for ip in result_dict: ip_set.add(ip) if len(ip_set) < ip_threshold: results.append(user) else: writer.writerow([user, 'ip']) return results def filter_retweet_count(user_set): FILTER_ITER_COUNT = 100; results = [] now_ts = time.time() db_number = get_db_num(now_ts) retweet_index_name = retweet_index_name_pre + str(db_number) # test search_user_count = len(user_set); iter_search_count = 0 while iter_search_count < search_user_count: iter_search_user_list = user_set[iter_search_count:iter_search_count + FILTER_ITER_COUNT] try: retweet_result = es_retweet.mget(index = retweet_index_name, doc_type = retweet_index_type,\ body = {'ids':iter_search_user_list}, _source=True)['docs'] except: retweet_result = [] for retweet_item in retweet_result: if retweet_item['found']: retweet_set = set() user = retweet_item['_id'] per_retweet_result = json.loads(retweet_item['_source']['uid_retweet']) for retweet_user in per_retweet_result: retweet_set.add(retweet_user) if len(retweet_set) < retweet_threshold: results.append(user) else: writer.writerow([user, 'retweet']) else: user = retweet_item['_id'] results.append(user) iter_search_count += FILTER_ITER_COUNT return results def filter_mention(user_set): results = [] #run_type if RUN_TYPE == 1: now_date = ts2datetime(time.time()) else: now_date = RUN_TEST_TIME timestamp = datetime2ts(now_date) - DAY date = ts2datetime(timestamp) for user in user_set: mention_set = set() for i in range(0,7): ts = timestamp - DAY*i result = r_cluster.hget('at_'+str(ts), str(user)) if result: item_dict = json.loads(result) for at_user in item_dict: mention_set.add(at_user) at_count = len(mention_set) if at_count < mention_threshold: results.append(user) else: writer.writerow([user, 'mention']) return results
[ "1257819385@qq.com" ]
1257819385@qq.com
dab4cfdd729eba784c4c05a5eac5d5d23ada3f00
88d59722425ba46baf2e5462890d18683183972a
/Machine_Learning/ml_bot.py
845abb734647ec2616f510b8b89fab4bb3227cf8
[]
no_license
opensource-NITT/Delta-SaesorTwitterBot
9bcc640614f335a6ea730aa6301b0663e25d7c58
aa1919f68ad0398b22e7ba465ed1daf208fc3f6e
refs/heads/master
2023-02-21T18:38:28.164327
2020-10-22T13:28:52
2020-10-22T13:28:52
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,050
py
import numpy as np import pandas as pd from keras.models import Sequential, load_model from keras.layers import Dense #importing the dataset dataset = pd.read_csv('data_main.csv') X = dataset.iloc[:,1:].values y = dataset.iloc[:,0].values #Splitting the data into train and test set from sklearn.model_selection import train_test_split X_train,X_test,y_train,y_test = train_test_split(X,y,test_size = 0.2,random_state = 0) #Feature scaling from sklearn.preprocessing import StandardScaler sc = StandardScaler() X_train = sc.fit_transform(X_train) X_test = sc.transform(X_train) #Building the ANN ann = Sequential() ann.add(Dense(units=8,activation='relu',input_shape=(2,))) ann.add(Dense(units=6,activation='relu')) ann.add(Dense(units=1,activation='sigmoid')) ann.compile(optimizer='adam',loss='binary_crossentropy',metrics=['accuracy']) #Training the ANN on X_train data ann.fit(X_train,y_train,epochs=100) ann.save('ann.h5') #predicting on the model model = load_model('ann.h5') print(model.predict(sc.transform([[seconds,followers]])))
[ "malikakarsh@gmail.com" ]
malikakarsh@gmail.com
802695a099e500fec46d761a6bc06d2bd5ff349a
4ba4ae24e734686f28fe395390a2d0210eb88458
/programas/galeria/orbita de .5 sobre la logística/orbita_0.5_logistica.py
c2fdeeaff5bbbd9bcf411db25878759de40fc3e1
[]
no_license
fhca/Sistemas-Complejos-1
a7578ae981c694ae2500a847adfe79c6c58c69ae
a2b70adf3859dd6a7318da98228adef78698f9c5
refs/heads/master
2021-01-15T19:59:49.778497
2017-12-16T03:34:51
2017-12-16T03:34:51
99,835,884
0
1
null
null
null
null
UTF-8
Python
false
false
690
py
__author__ = 'fhca' import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import axes3d from matplotlib import cm def logistic(c, x): return c * x * (1 - x) def evaluate(n, x0, c, f): res = x0 for _ in range(n): res = f(c, res) return res fig = plt.figure() ax = fig.add_subplot(111, projection='3d') C = np.linspace(0, 4, 200) N = np.arange(1, 2001) X, Y = np.meshgrid(C, N) #Z = evaluate(Y, .5, X, logistic) Z = np.empty_like(X) for i in range(X.shape[0]): for j in range(X.shape[1]): Z[i, j] = evaluate(Y[i, j], .5, X[i, j], logistic) ax.plot_surface(X, Y, Z, rstride=10, cstride=10, cmap=cm.jet, linewidth=0,) plt.show()
[ "hobber.mallow@gmail.com" ]
hobber.mallow@gmail.com
bfc7b7c725186d4654a5a1ba2b667ee3508fbffb
944448bd676fc0099d74dcd281328a2cb808ad66
/bas_app/urls.py
196aa408faa50b4d26aa2a5d7219b9e3b54d20cb
[]
no_license
sayunhck/bas_project
057ea3cf60b6262154458237300939b69977eba2
25a7bcb17af86ae411273ddff4fea34e505dd80c
refs/heads/master
2020-09-07T23:30:15.423850
2019-11-11T09:14:13
2019-11-11T09:14:13
220,942,903
0
0
null
null
null
null
UTF-8
Python
false
false
149
py
#coding=utf-8 from django.urls import path from . import views urlpatterns = [ path('',views.index_view), path('login/',views.login_view) ]
[ "15904513085@139.com" ]
15904513085@139.com
50c0db940d1a81503c735523e554c2f9aa4e8c25
be0f3dfbaa2fa3d8bbe59229aef3212d032e7dd1
/Gauss_v45r10p1/Gen/DecFiles/options/31503010.py
a0d860e470e74eab4f359406d68c4a1e5df58223
[]
no_license
Sally27/backup_cmtuser_full
34782102ed23c6335c48650a6eaa901137355d00
8924bebb935b96d438ce85b384cfc132d9af90f6
refs/heads/master
2020-05-21T09:27:04.370765
2018-12-12T14:41:07
2018-12-12T14:41:07
185,989,173
0
0
null
null
null
null
UTF-8
Python
false
false
762
py
# file /home/hep/ss4314/cmtuser/Gauss_v45r10p1/Gen/DecFiles/options/31503010.py generated: Wed, 25 Jan 2017 15:25:30 # # Event Type: 31503010 # # ASCII decay Descriptor: [tau- -> pi- pi+ pi- nu_tau]cc # from Configurables import Generation Generation().EventType = 31503010 Generation().SampleGenerationTool = "SignalPlain" from Configurables import SignalPlain Generation().addTool( SignalPlain ) Generation().SignalPlain.ProductionTool = "PythiaProduction" from Configurables import ToolSvc from Configurables import EvtGenDecay ToolSvc().addTool( EvtGenDecay ) ToolSvc().EvtGenDecay.UserDecayFile = "$DECFILESROOT/dkfiles/tau_pi-pi+pi-nu=DecProdCut.dec" Generation().SignalPlain.CutTool = "DaughtersInLHCb" Generation().SignalPlain.SignalPIDList = [ 15,-15 ]
[ "slavomirastefkova@b2pcx39016.desy.de" ]
slavomirastefkova@b2pcx39016.desy.de
274b4e2ca3abe691d126c2277da8731025cc44ce
a18324874df3083fe63430963ac98e0b056b3bab
/assignment2/a_classification.py
9d65f2438785f76eeb5d5cdc503f300d481e2dc8
[]
no_license
noah-sealy-fdl-2021/VisualAnalyticsProjects
16a95ce985aaa4c7c4b3fdc4dc2d3d3574b90695
f227e13a4b99bc724568316e34f9864aa1e39406
refs/heads/main
2023-03-18T17:52:50.473708
2021-03-13T07:04:31
2021-03-13T07:04:31
347,287,766
0
0
null
null
null
null
UTF-8
Python
false
false
24,531
py
from pathlib import Path from typing import List, Dict import pandas as pd import numpy as np from sklearn.ensemble import RandomForestClassifier from sklearn.model_selection import train_test_split from sklearn.preprocessing import LabelEncoder from sklearn.tree import DecisionTreeClassifier from assignments.assignment1.a_load_file import read_dataset from assignments.assignment1.b_data_profile import get_column_mean from assignments.assignment1.c_data_cleaning import fix_nans from assignments.assignment1.d_data_encoding import generate_label_encoder, replace_with_label_encoder, \ generate_one_hot_encoder, replace_with_one_hot_encoder, fix_outliers, fix_nans, normalize_column from assignments.assignment1.e_experimentation import process_iris_dataset, process_amazon_video_game_dataset_again, \ process_life_expectancy_dataset """ Classification is a supervised form of machine learning. It uses labeled data, which is data with an expected result available, and uses it to train a machine learning model to predict the said result. Classification focuses in results of the categorical type. """ ''' NOTE: I added some print statements to help looking at the functions output for texting I commented them out as they cause quite a lot of clutter while using them for larger functions BUT feel free to comment any of the print statements back in while testing if it helps :) ''' ############################################## # Example(s). Read the comments in the following method(s) ############################################## def simple_random_forest_classifier(X: pd.DataFrame, y: pd.Series, set: str = None) -> Dict: """ Simple method to create and train a random forest classifier https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier.html """ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.30) # If necessary, change the n_estimators, max_depth and max_leaf_nodes in the below method to accelerate the model training, # but don't forget to comment why you did and any consequences of setting them! if set == 'Amazon': model = RandomForestClassifier(n_estimators=5) else: model = RandomForestClassifier() model.fit(X_train, y_train) y_predict = model.predict(X_test) # Use this line to get the prediction from the model accuracy = model.score(X_test, y_test) return dict(model=model, accuracy=accuracy, test_prediction=y_predict) def simple_random_forest_on_iris() -> Dict: """ Here I will run a classification on the iris dataset with random forest """ df = pd.read_csv(Path('..', '..', 'iris.csv')) X, y = df.iloc[:, :4], df.iloc[:, 4] le = LabelEncoder() y_encoded = le.fit_transform(y) rf = simple_random_forest_classifier(X, y_encoded) print(rf['accuracy']) return rf def reusing_code_random_forest_on_iris() -> Dict: """ Again I will run a classification on the iris dataset, but reusing the existing code from assignment1. Use this to check how different the results are (score and predictions). """ df = read_dataset(Path('..', '..', 'iris.csv')) for c in list(df.columns): # Notice that I am now passing though all columns. # If your code does not handle normalizing categorical columns, do so now (just return the unchanged column) df = fix_outliers(df, c) df = fix_nans(df, c) df[c] = normalize_column(df[c]) X, y = df.iloc[:, :4], df.iloc[:, 4] le = generate_label_encoder(y) # Be careful to return a copy of the input with the changes, instead of changing inplace the inputs here! y_encoded = replace_with_label_encoder(y.to_frame(), column='species', le=le) rf = simple_random_forest_classifier(X, y_encoded['species']) ''' !!Explanation!! Both the classifier in this function and the one in the last yield just about the same score on average I believe this is because the two datasets are essentially the same at this point: They both have label encoded classes The only difference is this function removed nans and outliers, which the dataset does not possess many of anyway And also normalizes the dataset, which from what my understanding might not actually change the values in relation to other values. This normalization may just make the model in this function more efficient! Due to this potential boost in efficiency due to normalization, I would choose this function's model over the last ''' print(rf['accuracy']) return rf ############################################## # Implement all the below methods # Don't install any other python package other than provided by python or in requirements.txt ############################################## def random_forest_iris_dataset_again() -> Dict: """ Run the result of the process iris again task of e_experimentation and discuss (1 sentence) the differences from the above results. Use the same random forest method. Feel free to change your e_experimentation code (changes there will not be considered for grading purposes) to optimise the model (e.g. score, parameters, etc). """ df = process_iris_dataset() X, y = df.iloc[:, :5], df.iloc[:, 5:] rf = simple_random_forest_classifier(X, y) ''' !!!Explanation!!! There are not too many differences present, as the datasets are the same. The datasets are quite balanced, and the train and test are properly split so we can rule out model over fitting for the most part. Although the labels are encoded in different ways, their meanings are not changed between models. The only notable difference is that the process_iris_dataset() classifier has a slightly lower score on average. I believe this is because the process_iris_dataset() has an additional numeric mean column. This may provide extra noise to the dataset, which results in the classifier being slightly worse! I think this adds noise as the mean of each column doesn't really provide any new information that may benefit this specific classification task. To combat this, I believe running some feature selection and decsriptive analysis on the dataset, and dropping a few of the less relevant columns may improve the model. A feature selection method that may prove useful here is the Pandas correlation function "corr()" - to find the strength of the correlation between each feature and the target label. ''' print(rf['accuracy']) return rf def decision_tree_classifier(X: pd.DataFrame, y: pd.Series) -> Dict: """ Reimplement the method "simple_random_forest_classifier" but using the technique we saw in class: decision trees (you can use sklearn to help you). Optional: also optimise the parameters of the model to maximise accuracy :param X: Input dataframe :param y: Label data :return: model, accuracy and prediction of the test set """ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.30) # max_features = 1 # max_depth = 2 # max_leaf_nodes = 2 model = DecisionTreeClassifier() model.fit(X_train, y_train) y_predict = model.predict(X_test) # Use this line to get the prediction from the model accuracy = model.score(X_test, y_test) return dict(model=model, accuracy=accuracy, test_prediction=y_predict) def train_iris_dataset_again() -> Dict: """ Run the result of the iris dataset again task of e_experimentation using the decision_tree classifier AND random_forest classifier. Return the one with highest score. Discuss (1 sentence) what you found different between the two models and scores. Feel free to change your e_experimentation code (changes there will not be considered for grading purposes) to optimise the model (e.g. score, parameters, etc). """ df = process_iris_dataset() X, y = df.iloc[:, :5], df.iloc[:, 5:] rf = simple_random_forest_classifier(X, y) dt = decision_tree_classifier(X, y) print(rf) print(dt) ''' !!!Explanation!!! I may be inclined to choose the decision tree here (in this specific case) over the random forest Though random forests are typically known to be more accurate, this is because they take the average of many decision trees, rather than just one. This makes the decision tree more efficient in time and space as it requires only one tree, instead of many. In this specific instance, it seems that on average the decision tree is just as accurate as the random forest I believe this is due to the data set being both balanced and easily separable. Therefore I will take the decision tree over the random forest, as the decision tree is yielding around the same accuracy on average, AND is more efficient. This is just for this specific function though, I think overall random forests are usually the way to go, even if they require more time and resources to execute; they do solve a lot of accuracy issues the decision trees may have, such as overfitting. ''' if rf['accuracy'] > dt['accuracy']: print('random forest wins') return rf else: print('decision tree wins') return dt def train_amazon_video_game_again() -> Dict: """ Run the result of the amazon dataset again task of e_experimentation using the decision tree classifier AND random_forest classifier. Return the one with highest score. The Label column is the user column. Choose what you wish to do with the time column (drop, convert, etc) Discuss (1 sentence) what you found different between the results. In one sentence, why is the score worse than the iris score (or why is it not worse) in your opinion? Feel free to change your e_experimentation code (changes there will not be considered for grading purposes) to optimise the model (e.g. score, parameters, etc). """ df = process_amazon_video_game_dataset_again() ''' !!!Explanation!!! This is the most significant preprocess action I make I have decided to remove all rows that have labels that appear less than 10 times in the dataset I find this solves many of the issues I was having with this data set 1. In classification, the model must train itself using the available labels in the training set, and then tests its performance predicting those labels with the testing set. I found as there are many unique instances in this dataset the model would evaluate instances that had labels which the model had not even seen before. This is problematic as the model would essentially make a guess at the instance, and because it did not know the correct label, it would always get it wrong. To fix the data set, it may be good to collect some data to help inflate those unique instances and thus balancing the dataset, or to somehow generalize labels so they are not so specific to a point where there are single instances with a unique label. 2. This also significantly reduces the size of the data set, which allows the model to run efficiently without sacrifices to the Decision Tree or Random Forest models. The data set is reduced to nearly half of what it used to be when you remove unique instances, and even more when you only look at labels that appear at least 10 times. ''' df = df.drop(df[df['user_count'] < 10].index) print(df) X, y = df.iloc[:, 1:], df.iloc[:, :1] ''' !!!Explanation!!! I decided to drop the time column as I personally don't think it will have a correlation with the target labels. The time only seems to indicate the activity of the user, which is easily updates once the user reviews again. Thus, my theory is that the model might learn to check when a user is active, which could overfit the model if user activity is somewhat random. For example, if they reviewed a video game that came out today, after not reviewing one after 10 years, the model may not predict the user because it is biased to the activity dates. Sometimes sequels to games come out after a long, long time as any video game fan knows, and perhaps a player might want to review the newest sequel of a game series they used to like to review. I believe the model should be able to predict the user from other features relating to the users rating behaviours, but should be independent of time, as there are no set rules to when a user might review ''' X = X.drop(['time'], axis=1) ''' !!!Explanation!!! I decided to label encode the 'asin' data column. I believe this may be important to the models classification as there may be some sort of pattern between the user and the types of video games they review. For example, maybe user John only reviews Halo games, and never Call of Duty games. As this data type is a string, I needed some way to encode it. My first thought was one hot encoding but there are many different 'asin' attributes, so to one hot encode that we would need to use A LOT of bits. Thus one hot encoding seemed inefficient for space, thus label encoding these values seemed to be the next best option, as to the model the newly allocated numeric names to the 'asin' data will not change its meaning if patterns are present. ''' le = LabelEncoder() X['asin'] = le.fit_transform(X['asin']) # this is here to convert shape to (n,) to prevent future warnings y = y.values.ravel() le = LabelEncoder() y_encoded = le.fit_transform(y) ''' !!!Explanation!!! I used a special random forest compared to the others I've been using The default estimator size (number of trees in the forest) is 100 according to the scikit learn documentation. If I execute my code with that amount of estimators, my computer would run out of memory and the program crashes, thus after playing around with the hyper parameter of the random forest, I settled at 5 estimators. Once again, I'm sure the ideal number of estimators is more, but due to memory limitations I am using 5 estimators. ''' rf = simple_random_forest_classifier(X, y_encoded, 'Amazon') print(rf) dt = decision_tree_classifier(X, y_encoded) print(dt) ''' !!!Results!!! The decision tree is returning around a .5 accuracy score. The random forest classifier is returning around the same accuracy score on average. This specific function takes a long time to run as there is a ton of data to be processed, even with the preprocessing. I think there is room for overfitting here due to the duplicate values in the data set. This is an issue because these values may be ending up in both the training and the testing set, leading to a bias for that one set. It is difficult to compensate for these duplicates with the data we have, so I believe a solution to this may be to collect some more data relating to each specific row, perhaps more information relating to the users specific review for each review. These features may include some traits coming from the field of NLP, such as semantic and sentiment analysis. Perhaps the model would be able to pick up on some patterns relating to how the user writes, while also not being biased towards specific labels due to data duplication. ''' if rf['accuracy'] > dt['accuracy']: print('random forest wins!') return rf else: print('decision tree wins!') return dt def train_life_expectancy() -> Dict: """ Do the same as the previous task with the result of the life expectancy task of e_experimentation. The label column is the column which has north/south. Remember to convert drop columns you think are useless for the machine learning (say why you think so) and convert the remaining categorical columns with one_hot_encoding. (check the c_regression examples to see example on how to do this one hot encoding) Feel free to change your e_experimentation code (changes there will not be considered for grading purposes) to optimise the model (e.g. score, parameters, etc). """ df = process_life_expectancy_dataset() ''' !!!Explanation!!! I dropped the year column as there are many and more Nan values within It is not really a value you can simply fix by average the columns that are not empty Logically that would not make sense, and I believe by doing that the year column would become misrepresented I do not predict this to affect accuracy all that much as year should not have that big of an impact on the classification of the country being in the north or south, as this function is doing ''' df = df.drop(['year'], axis=1) ''' !!!Explanation!!! The expectancy column also has a lot of Nan values, so I decided to replace those Nans with the average of that column. I believe this is appropriate as the life expectancy is probably around the same range for each country in this dataset, so taking the average of it is a good measure of the life expectancy for any country. Note: This hypothesis may not be great as the range of expectancy is quite large, from my preprocessing it will be around 75 years; but given that some countries are developing, as well as the data being from many years ago, for now I believe the mean can still give a better representation than nothing! ''' mean = get_column_mean(df, 'expectancy') df['expectancy'].fillna(value=mean, inplace=True) X = df X = X.drop(['latitude'], axis=1) y = df['latitude'] print(X) print(y) ''' !!! Explanation !!! I decided to label encode the country name I could not leave them as strings as the model would not be able to read it, and I think one hot encoding the names would be very space innificient as there are many different country names, and we would need a lot of bits to one hot encode them all! ''' le = generate_label_encoder(X['name']) X['name'] = le.fit_transform(X['name']) rf = simple_random_forest_classifier(X, y) dt = decision_tree_classifier(X, y) ''' !!!Explanation!!! Both the decision tree and the random forest are performing very well, both with ~.99 accuracy scores. From the results, both performed much better than any function we have classified before. I am inclined to believe that this data set has lead to some overfitting, due to an unbalanced dataset. The dataset for example, has the country Afghanistan many times, each attribute being the same as the year has been removed and many of the expectancy missing values are set to that columns mean. This introduces overfitting because the duplicate data instances may go into both the training and testing set, contamination!! This is not good as the model will be tested on things it already knows, giving it 100% on it almost automatically... kind of like the model is cheating on a test. Given a completely brand new data set, I think the models performance would drop. Due to this data imbalance, I don't think this dataset is that great to run classification on, even with all of the preprocessing. I believe a solution to this would be to of course balance out the data set, by collecting more information about other countries that are less represented in the dataset, as well as add dimensions that are not so redundant as missing or mean expectancies; perhaps more general features relating to the weather if we are still trying to predict if it is in the north or south. ''' if rf['accuracy'] > dt['accuracy']: print('random forest wins') return rf else: print('decision tree wins') return dt def your_choice() -> Dict: """ Now choose one of the datasets included in the assignment1 (the raw one, before anything done to them) and decide for yourself a set of instructions to be done (similar to the e_experimentation tasks). Specify your goal (e.g. analyse the reviews of the amazon dataset), say what you did to try to achieve the goal and use one (or both) of the models above to help you answer that. Remember that these models are classification models, therefore it is useful only for categorical labels. We will not grade your result itself, but your decision-making and suppositions given the goal you decided. Use this as a small exercise of what you will do in the project. """ ''' !!!My Goal!!! I will be using the dataset "Geography" With this dataset, I want to find out if we can fit a model to predict the World Bank Income Group of a country given a some geographical and bank related features To find this out, I will preprocess the data in the following ways: - Fix any missing data in the columns that are mentioned below - Extract and label encode the World Bank groups column into the labels vector - Extract and one hot encode World bank region column into the features vector - Extract latitude into the features vector - Extract longitude into the features vector I will train both a Decision Tree and Random Forest to find my goal, and return the model with the greater accuracy ''' df = pd.read_csv(Path('..', '..', 'geography.csv')) ''' !!!Explanation!!! The only columns with Nans for the target features for this were from the Vatican, so I replaced their null values with the values from Italy. I know they are technically separate, but until the data set can be filled we will simply consider them the same. ''' df['World bank region'].fillna(value='Europe & Central Asia', inplace=True) df['World bank, 4 income groups 2017'].fillna('High Income', inplace=True) le = generate_label_encoder(df_column=df['World bank, 4 income groups 2017']) df = replace_with_label_encoder(df=df, column='World bank, 4 income groups 2017', le=le) ohe = generate_one_hot_encoder(df_column=df['World bank region']) df = replace_with_one_hot_encoder(df=df, column='World bank region', ohe=ohe, ohe_column_names=ohe.get_feature_names()) columns = ['Latitude', 'Longitude', 'x0_East Asia & Pacific', 'x0_Europe & Central Asia', 'x0_Latin America & Caribbean', 'x0_Middle East & North Africa', 'x0_North America', 'x0_South Asia', 'x0_Sub-Saharan Africa'] X = df[columns] y = df['World bank, 4 income groups 2017'] dt = decision_tree_classifier(X=X, y=y) #print(dt) rf = simple_random_forest_classifier(X=X, y=y) #print(rf) ''' !!!My Results!!! It seems that once again on average the Decision Tree and Random Forest are yielding similar results. Their accuracies are quite low, and range from around 50 to nearly 70 percent accuracy. I don't think a lot of overfitting is occurring here, as the datasets are well balanced, and properly split into training and testing. The data set does have a lack of columns that relate to the economy, wealth, or demographics of the country, So I believe that more data may improve the model to fit a mapping between the demographic and wealth data of a given country, and its income group (target label). Features that could be collected as additional data columns could include things such as average income, employment rate, tax information, and more! I believe although this model is just a start, it could be beneficial to companies who are figuring out economic policies or tax plans. I believe, the ability to use this model while trying to come up with plans to benefit a country's economy could be useful, with enough relevant training and data :) ''' if rf['accuracy'] > dt['accuracy']: #print('random forest wins') return rf else: #print('decision tree wins') return dt if __name__ == "__main__": assert simple_random_forest_on_iris() is not None assert reusing_code_random_forest_on_iris() is not None assert random_forest_iris_dataset_again() is not None assert train_iris_dataset_again() is not None assert train_amazon_video_game_again() is not None assert train_life_expectancy() is not None assert your_choice() is not None
[ "noreply@github.com" ]
noah-sealy-fdl-2021.noreply@github.com
35f4309ae58a75dbafef5a17b578d36f585fb9a7
6fa14cd7be2d22553496326bce954b74dd6779bd
/ejercicios 1er año/funcion para limpiar pantalla.py
c7c6fde27a48ac5be1d0bcb5c8821d9144c113f6
[]
no_license
nucleomis/Archivos_Python
28e93dfac08eee604f25173ecdbfc3e86eb952ef
dd3e104bb38e9763d1e5efb22614e845f21d68f1
refs/heads/main
2023-06-22T13:19:27.952059
2021-07-20T14:05:13
2021-07-20T14:05:13
387,810,551
0
0
null
null
null
null
UTF-8
Python
false
false
129
py
import platform import os def limpiar(): os.system("cls") cont=0 for x in range(5): cont=cont+1 print(cont) limpiar()
[ "nucleo.mis@gmail.com" ]
nucleo.mis@gmail.com
20b656ddbab9eae32f2eb0fa454be28a9a548ccc
333a9bf3ce71f2aefc0b105fe4058c2aacc5ddb1
/vae_eval.py
ed02672e2ae5d2e68493bce36009bf47b97c521f
[ "MIT" ]
permissive
shijack/vae-system
33a5cb53a52cfbc23952cdcc8bb3daf80ef75926
14506b3b5966162a3502b26dd68d1a77ccbcfb34
refs/heads/master
2020-04-02T01:44:26.306971
2018-10-24T12:49:51
2018-10-24T12:49:51
153,872,748
0
0
null
null
null
null
UTF-8
Python
false
false
3,449
py
import tensorflow as tf import numpy as np import scipy import cv2 import os os.environ["CUDA_DEVICE_ORDER"] = "PCI_BUS_ID" os.environ["CUDA_VISIBLE_DEVICES"] = "1" LATENT_DIM = 256 ROWS, COLS = 10, 10 HEIGHT, WIDTH, DEPTH = 144, 112, 3 N, M = 10, 30 splines = [] x = range(N) xs = np.linspace(0, N, N * M) for i in range(ROWS * COLS * LATENT_DIM): y = np.random.normal(0.0, 1.0, size=[N]).astype(np.float32) s = scipy.interpolate.UnivariateSpline(x, y, s=2) ys = s(xs) splines.append(ys) splines = np.array(splines) def read_record_new(images_path='./data', depth=1): train_total_data = [] for img_path in os.listdir(images_path): img = cv2.imread(os.path.join(images_path, img_path)) if depth == 1: img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) img = cv2.resize(img, (112, 144)) / 255.0 train_total_data.append(img) train_total_data = np.array(train_total_data) if depth == 1: train_total_data = np.expand_dims(train_total_data, axis=3) return train_total_data with tf.Session() as sess: saver = tf.train.import_meta_graph('./model_new/gan-20000.meta') saver.restore(sess, tf.train.latest_checkpoint('./model_new')) graph = tf.get_default_graph() # latent_input = graph.get_tensor_by_name('latent_input:0') x_input = graph.get_tensor_by_name('encoder/input_img:0') # laten_mean = graph.get_tensor_by_name('encoder/mean:0') # laten_stddev = graph.get_tensor_by_name('encoder/stddev:0') image_eval = graph.get_tensor_by_name('decoder/reconstruct/conv5/act:0') latent_feature = graph.get_tensor_by_name('variance/latent_feature:0') imgs = read_record_new(depth=3) # for i in range(N * M): for i in range(N * M / 2): time_point = splines[..., i] time_point = np.reshape(time_point, [ROWS * COLS, LATENT_DIM]) # data = sess.run(image_eval, feed_dict={latent_input: time_point}) data = imgs[:10, ...] # data_mean,data_stdddev = sess.run([laten_mean,laten_stddev], feed_dict={x_input: data}) # data = data_mean+ data_stdddev data = sess.run(latent_feature, feed_dict={x_input: data}) np.savetxt('./eval/feature_1_%d' % i, data) # data = np.reshape((data * 255).astype(int), (ROWS, COLS, HEIGHT, WIDTH, DEPTH)) # data = np.concatenate(np.concatenate(data, 1), 1) # cv2.imwrite('./eval/eval_img_' + str(i) + '.png', data) # cv2.imshow('eval_img', data) # cv2.moveWindow('eval_img', 0, 0) # key = cv2.waitKey(0) # if key == 27: # break def test_image(path_image, num_class): img_string = tf.read_file(path_image) img_decoded = tf.image.decode_png(img_string, channels=3) img_resized = tf.image.resize_images(img_decoded, [224, 224]) img_resized = tf.reshape(img_resized, shape=[1, 224, 224, 3]) # model = Vgg19(bgr_image=img_resized, num_class=num_class, vgg19_npy_path='./vgg19.npy') # score = model.fc8 # prediction = tf.argmax(score, 1) saver = tf.train.Saver() with tf.Session() as sess: sess.run(tf.global_variables_initializer()) saver.restore(sess, "./tmp/checkpoints/model_epoch50.ckpt") cv2.imwrite('img.png', img_decoded.eval()) # plt.imshow(img_decoded.eval()) # plt.title("Class:" + class_name[sess.run(prediction)[0]]) # plt.show() # test_image('./validate/11.jpg', 2)
[ "690141808@qq.com" ]
690141808@qq.com