We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ade,neurologic deterioration | |
drug,nitrous oxide | |
sequence,Patients,with,vitamin,B12,deficiency,are,exceedingly,sensitive,to,neurologic,deterioration,following,nitrous,oxide,anesthesia,. | |
labels,0,0,0,0,0,0,0,0,0,5,7,0,1,3,0,0 | |
ade_mask,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0 | |
==============================, ============================= | |
ade,prolonged jaundice,sicca complex | |
drug,thiabendazole | |
sequence,A,55-yr-old,man,developed,prolonged,jaundice,and,sicca,complex,after,a,course,of,thiabendazole,therapy,. | |
labels,0,0,0,0,5,7,0,5,7,0,0,0,0,4,0,0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tensorflow as tf | |
training = tf.placeholder(dtype=tf.bool, name='is_training') | |
a = tf.placeholder(dtype=tf.float32, name='a') | |
b = tf.placeholder(dtype=tf.float32, name='b') | |
c = tf.cond(training, lambda : a+b, lambda : a*b) | |
sess = tf.Session() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdio.h" | |
#include "unistd.h" | |
#define MSGLEN 32 | |
int main (int argc, char const* argv[]) | |
{ | |
// check for arguments | |
if(argc < 2){ |
NewerOlder