-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.n
More file actions
2581 lines (1738 loc) · 208 KB
/
.n
File metadata and controls
2581 lines (1738 loc) · 208 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
total 120
-rw-r--r-- 1 bobak 1.2K Feb 6 17:23 README.md
lrwxr-xr-x 1 bobak 66B Feb 6 17:24 cl-kb@ -> /Users/bobak/dwn/lang/lsp/code/project/src/malecoli/malecoli/cl-kb
lrwxr-xr-x 1 bobak 50B Feb 6 17:24 components@ -> /Users/bobak/dwn/lang/lsp/ai/ut/mfkb/km/components
-rw-r--r-- 1 bobak 788B Feb 6 17:21 ld3.cl
-rw-r--r-- 1 bobak 64B Feb 6 17:21 ld6.cl
-rw-r--r-- 1 bobak 5.9K Feb 6 17:21 links.km
lrwxr-xr-x 1 bobak 65B Feb 6 17:24 mlcl@ -> /Users/bobak/dwn/lang/lsp/code/project/src/malecoli/malecoli/mlcl
lrwxr-xr-x 1 bobak 49B Feb 6 17:25 romilly@ -> /Users/bobak/wrk/sie/stefan/doc/www.romilly.co.uk
lrwxr-xr-x 1 bobak 71B Feb 6 17:24 tag@ -> /Users/bobak/Documents/www/www.siemens.com/new/project-haystack.org/tag
-rw-r--r-- 1 bobak 8.3K Feb 6 17:21 tags.km
lrwxr-xr-x 1 bobak 51B Feb 6 17:24 tst@ -> /Users/bobak/dwn/lang/lsp/code/project/src/sicl/tst
-might still use protege, or at lease SemanticMediaWiki+ from KM, or (Power)LOOM web interface
less of ML focus, and more about getting descriptions of things in quickly for any reasoning need.
-
Still want protege w/lsw2, have a cache of svn.mumble.net:8080 &old email on getting abcl lisp up w/it, but not working.
svn.mumble.net/svn/lsw/trunk/protege/net.mumble.protege.abcl/net/mumble/protege/abcl/LispAction.java alanruttenberg@
https://github.com/svn2github/LSW2 alter bin/abcl to take java1.7 &set abcl_bits to 64
org.sciencecommons.lisp.protege owl2 lisp code of interest
might be useful to interact w/wings semantic workflow, as also uses tomcat/java/etc
www.wings-workflows.org can use pegasus-wms ;though could use other w/cwl/prov/etc
looking@/domains &other ontologies/code
@planet_lisp ABCL Dev: ABCL 1.4.0 http://abcl-dev.blogspot.com/2016/10/abcl-140.html …
@reddit_lisp #lisp Using Armed Bear Common Lisp With DeepLearning4j | https://leanpub.com/lovinglisp/read#leanpub-auto-using-armed-bear-common-lisp-with-deeplearning4j
@MarkusLanthaler Quite exciting to see TensorFlow, @Google's machine learning system, being open-sourced http://bit.ly/1PlmLtE ;nn&nice workflow-viz
Algernon(tab) is useful, but would be nicer w/full lisp; Think there is a clojure-tab around; still want stnd lisp/km.
-
then on the mapping from slightly different description hierarchies(once they are determined).
really should look at descriptions to be used, and tool up just enough to get them going.
might make a kmst km semantic things; can show mapping example when needed; romilly.co.uk sed..
could use ini file parser like: http://www.cliki.net/clinicap &several others, but really
look at how many need to be parsed in near&further terms. -just get this device-descrp going &..
want tree to triple translation now;see P S O, at start, w/P O pairs w/in the {}s
could use: http://www.cliki.net/trivial-configuration-parser too
works, after some transformation; look at transforms&other parsing, to meet in middle
will also look at cl-kb or similar, to pull in protege pont/pins files ;eg. w/xml-tab imports
can just take xml in directly though
www.cliki.net/semantic%20web http://franz.com/agraph/support/documentation/v4/lisp-reference.html
www.w3.org/2005/Incubator/ssn/wiki/Main_Page buff.ly/NfM03q on gen semantic-sensor-description
in end want kn-resources into triples: http://nlp2rdf.org/ http://linguistics.okfn.org/
http://persistence.uni-leipzig.org/nlp2rdf/ https://github.com/NLP2RDF stanbol lmf connection
also github.com/percyliang/sempre.git ;framenet many uses incl train-set4finding relations
http://en.wikipedia.org/wiki/Category:Semantic_Web ;found km component-lib framenet sumo connection
want ability to describe event relationships&more, but need (problem) descriptions
Bring over more from kmp, but can still do some early dev there 1st. Tools&some gen-structure..km
ModelBased(actors)for:semantic-service composition,monitoring,diagnosis,&repair suggestions.
Want data(cube)info aligned w/the(sumo like)component-lib of KM;Start rough&cleanUp,in all directions
http://semstats.org/
(re)tweeted: Emanuele Della Valle @manudellavalle Vienna, Austria presenting
#streamreasoning: #velocity+#variety for #bigdata by @polimi at #SR2015 sampling http://www.slideshare.net/emanueledellavalle/stream-reasoning-mastering-the-velocity-and-the-variety-dimensions-of-big-data-at-once …
#sparql & https://github.com/aaltodsg/instans …
m bobak Retweeted Jean-Paul Calbimonte @jpcik slides at the Stream Reasoning workshop #SR2015 http://fr.slideshare.net/jpcik/rdf-stream-processing-and-the-role-of-semantics … http://www.vcla.at/sr2015/
get,pd: lparallel,lfarm cl-p2p pcall stmx ;distrib-blackboard, linda(tuple) setup going
https://github.com/naveensundarg/RLCNL could be used &/or km bits, to have ~NL output
found other planner/constriant /pd:csp etc too
pick&try any simple com/above sockets, could also use ccl or cmucl, &try:
http://www.pvv.ntnu.no/~ljosa/doc/encycmuclopedia/devenv/cmu-user/ipc.html
http://www.cs.cmu.edu/afs/cs/project/clisp/src/exp/struct/code/remote.lisp
also consider slime/swank, as remote dbg will also be needed
also http://www.cliki.net/websocket%20server https://github.com/spratt/cl-websocket.git
on osx updated sbcl 1.1[8->16] &got update of: https://github.com/aaltodsg/instans.git
and finally got a clean command-line binary
Usage: instans [ -h | --help | -v | --version | { <configuration-option> } ]
General options:
-h | --help Print this message and exit.
-v | --version Print version information and exit.
Configuration options:
-n <string> | --name <string> Use <string> as the name of the system.
-d <dir> | --directory <dir> Use <dir> as the prefix for file lookup.
You can use a file or an URL as <dir>
-b <url> | --base <url> Use <url> as the base.
-g <graph> | --graph <graph> If <graph> is 'default' add the following
inputs to the default graph. If it is <url>
add them to the graph named by <url>
-r <rules> | --rules <rules> Use rules in <rules>.
-i <input> | --input <input> Read input based on <input>.
-t <input> | --triples <input> Same as -i.
-o <output> | --output <output> Write output based on <output>.
-e <expect> | --expect <expect> Compare the results to <expect>.
-f <commands> | --file <commands> Read options from <commands>.
--report <rules> The kinds of rules you want to get reported; a ':'
separated list of (select|construct|modify).
--triple-processing-policy <policy> See the documentation.
--rule-instance-removal-policy <policy> See the documentation.
--rete-html-page-dir <dir> Create an HTML page about the Rete network.
--queue-execution-policy <policy> See the documentation.
-e | --execute Execute the system. This is done by default at the end of processing all arguments.
--debug <phases> See the documentation.
--verbose <phases> Same ase --debug.
See the documentation for description of the parameters of the options above
/src/instans> gred exec bin/*s
bin/instans:exec `dirname $0`/instans.bin --end-toplevel-options $*
bin/sbcl-instans:exec sbcl --core ${CORE} $*
=having a streaming sparql engine should be really useful, to deal w/~RT updates
http://www.cs.hut.fi/~mjrinne/documents/INSTANS%2011102013.pdf
added link to sparql11-test-suite while changing hard coded test links
Get instans <-> km interop, ~like the kmp km rdf/owl/etc interop
having streaming sparql queries, and other KM reasoning together could be great
also just try KM's: 29.8 Forward Chaining on Slots, &see about starting w/just instans I/O
curious why instans rules done w/: rete/rete-classes.lisp ¬ reuse lisa.sf.net work
=will also look at: http://trac.common-lisp.net/isidorus/wiki/TmSparql
=and https://github.com/mtravers/swframes had tried BioLisp/BioBike before
In kmp started to look at krss2 loads, continue here;
(define-primitive-concept a b) -> (a has (superclasses (b)))
(define-primitive-role a ::parents(b)) -> (a has (superclasses (b))) ;where top class is (Slot)
inputs from:.. nlp2rdf.org also trying: stack.lod2.eu/blog notional.no-ip.org/srv.html
DataRobot Automated Predictive Modeling http://bit.ly/1sFwb65 more kmp, but aiding etl/srvc compose
Still interested in the above, but less from some of the IoT buzz uses, &more for some of the
longer view use of semantics(KnRep&Reasoning)to aid KnBased(eg.scietific)endevour.
General shared standards are still a focus, but getting thigs working w/in their spheres w/the
best most flexible tech(where one can still explore),is still a focus. Still have interest in
things like common-logic as well, as some cNL &much more. Want to knock out a lil in the area soon.
http://www.skampakis.com/can-data-science-be-automated/
1)Cambridge’s Google-funded automatic statistician 2)Wolfram’s Data Science Platform 3)MIT’s Data Science Machine
http://www.datasciencecentral.com/profiles/blogs/automated-machine-learning-for-professionals
https://www.datasciencecentral.com/profiles/blogs/more-on-fully-automated-machine-learning
@DARPA With $ from our Data-Driven Discovery of Models program, @MIT researchers are working w/ @Accenture to test tech for easily applying #MachineLearning to business needs. The automation tools allow SMEs w/o data sci experience to use #ML to solve problems. http://news.mit.edu/2018/ml-20-machine-learning-many-data-science-0306 … https://pbs.twimg.com/media/DXtEK66XcAQruFP.jpg
@randal_olson Jan 17 More Randy Olson Retweeted Randy Olson
To me, it looks like @googleresearch either:
a) is ignorant of what #AutoML really is and doesn't know better, or
b) is choosing to exploit a trending research field by naming one of their cloud products after it.
Disappointing either way.
Google's "AutoML" currently performs #DeepLearning architecture search for image data.
#AutoML as a field covers much more than that, e.g., one list of AutoML goals: https://en.wikipedia.org/wiki/Automated_machine_learning … #MachineLearning
https://pbs.twimg.com/media/DTwcE32V4AEFBHf.jpg
https://twitter.com/randal_olson/status/953667786823249920 …
Christopher @communicating [Interesting] DURA: A Declarative Event Query Language for Reactive [Complex] Event Processing [large pdf] http://www.en.pms.ifi.lmu.de/publications/dissertationen/Steffen.Hausmann/DISS_Steffen.Hausmann.pdf …
@pgroth ISWC 2017 Trip Report https://thinklinks.wordpress.com/2017/10/29/trip-report-iswc-2017/ … @iswc2017 #iswc2017
@merpeltje My #iswc2017 trip report is up at https://www.clariah.nl/en/new/blogs/iswc-trip-report … @CLARIAH_NL @KNAWHuC
Kemele M. Endris @KemeleM Jun20 "Interest-based RDF Update Propagation" has been accepted at #iswc2015 #EISBonn http://eis.iai.uni-bonn.de/Projects/iRap.html …
@DataScienceGr Cool work to be presented by @IlaTiddi in MIRROR@IROS: Robots updating a KB to answer time-dependent SPARQL queries https://dsg.kmi.open.ac.uk/update-of-time-invalid-information-in-knowledge-bases-through-mobile-agents-by-ilaria-tiddi/ …
@DaSeLab Keynote by @pascalhitzler confirmed at the Diversity++ workshop at @ISWC2015 http://dase.cs.wright.edu/activities/diversity2015 … @freddylecue @cldamat @mraghava
http://www.researchobject.org/5000-2/ get assoc vocabs together, in aid of some CS&E
Daniel Garijo @dgarijov Jun 1 My slides for the Open Research Data day: http://www.slideshare.net/dgarijo/open-research-data-day-is-pre …
https://github.com/willf/apex.git nasa human-factors w/pubsub...
http://human-factors.arc.nasa.gov/publications/20051025121038_chi02.pdf
a hierarchical task decomposition expressed in a cognitive modeling tool
http://lispm.de/genera-concepts
http://www.qudt.org/ &datacube, re: how datatypes should w/in tbox, @least w/units when applicable
https://github.com/sfbrigade ohana-api (2postgres)&some mongo; pg/cl-postgres mongo
http://franz.com/agraph/allegrograph/doc/mongo-interface.html
http://franz.com/agraph/support/documentation/v4/mongo-interface.html
http://answers.semanticweb.com/questions/27249/sparql-mapping-to-mongodb
https://github.com/kraison/vivace-graph-v3.git
github.com/ha-mo-we/Racer.git github.com/aaltodsg/instans.git &more
@medriscoll "ETL: a hard ^#&@ing problem." http://daguar.github.io/2014/03/17/etl-for-america/ …
(Notes from the digital underground of @codeforamerica alum @allafarce)
etl then rdb2rdf, etl w/ld/nlp/..(apache/etc)code
https://github.com/daguar/etl-for-america /wiki good links, incl OpenRefine;incls(rdf/etc)plugins
http://blog.semantic-web.at/2011/02/17/transforming-spreadsheets-into-skos-with-google-refine/
https://github.com/OpenRefine/grefine-rdf-extension http://refine.deri.ie/ ..
lod2-refine - LOD-enabled version of OpenRefine
lodgrefine - LOD-enabled version of Google Refine
lodrefine - LOD-enabled version of OpenRefine
https://github.com/OpenRefine/OpenRefine/wiki/Extensions
https://github.com/sparkica/dbpedia-extension
https://code.google.com/p/lmf/wiki/GoogleRefineExtension
http://freeyourmetadata.org/named-entity-extraction/
https://github.com/sparkica/refine-stats http://refine.deri.ie/
http://dat-data.com/
googleIO14 kn-graph vids:
https://www.google.com/events/io/io14videos/7e2b1008-97bf-e311-b297-00155d5066d7
https://www.google.com/events/io/io14videos/6e2c6545-00c0-e311-b297-00155d5066d7
https://www.google.com/events/io/io14videos/86c8ee27-39da-e311-b297-00155d5066d7
http://blog.swirrl.com/articles/linked-data-etl/
@diethardsteiner Nov 18 Read my latest article on @Pentaho Data Integration: Advances in Real Time #streaming - Real Time SQL: http://diethardsteiner.github.io/pdi/2016/10/30/PDI-Streaming.html …
Retweeted by Dataverse Network
Mercè Crosas @mercecrosas 23h
Slides on "Dataverse with DataTags: Sharing Data you can't Share" presented with @michbarsinai at iRODS Meeting @IQSS http://owl.li/yxkh1
also: http://datascience.iq.harvard.edu/presentations/data-publishing-workflows-dataverse ...
iRODS uses rules for data-store, this sci data store/share metadata not necc w3c stnd
also looking@ distrib file sys, w/meta-data, incl: coda, ceph, glusterfs, openafs, ...
want meta-fs, w/offline cache, file&s3 like interact,...
https://twitter.com/MBstream/status/347517793924685824 zookeeper ..service-monitor
Lots of interesting presentations to read in more details: workshop on #imaging ontology http://ncorwiki.buffalo.edu/index.php/Ontology_and_Imaging_Informatics … via @cekahn
really do want data-cube/etc to annotae sci data, maybe w/kmp &hdf part of cl-ana/?
=https://github.com/ghollisjr/cl-ana has hdf-table,&much more for data-analysis
https://github.com/ghollisjr/cl-ana/wiki/Tables Histograms Fitting Plotting Generic-Math
a few more semantic-stats links, could start w/something simple /even w/just data-tables
https://www.hdfgroup.org/HDF5/release/obtain5110.html Single-Writer / Multiple-Reader (SWMR),So easier interop btw lang/libs docs.h5py.org/en/latest/swmr.html
http://answers.semanticweb.com/questions/28331/big-hdf5-dataset-in-linked-data https://www.w3.org/TR/vocab-data-cube http://csarven.ca/linked-sdmx-data
hdf5 linked-data OR linked-open-data: https://bioportal.bioontology.org/projects/BIOM-LD .. http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3105758/ https://github.com/mikel-egana-aranguren/biom-ld
https://www.hdfgroup.org/projects/hdfserver/ looks like a possibly easier way to have a semweb sci-data server, look@more
http://www.slideshare.net/semwebcompany/heiner-oberkampf-semantics-for-integrated-analytical-laboratory-processes-the-allotrope-perspective-53970722 sld11 use of hdf5 ;sld28,look into getting qudt in KM
Could try a mini-ver of my own w/: https://github.com/djedi23/cl-netcdf or cl-ana's hdf5 libs
In cl-netcdf: In the run-example fnc, the call should be to: save-scatter-points
/djedi23 also has a cl-cnn conv-NN, try(needs warn fixes)/collect w/rest of lisp/ML code
https://www.allotrope.org/allotrope-framework Taxonomies Domain Model ;Semantic Annotation of HDF5 files
Finally read on https://mitpress.mit.edu/building-ontologies w/ http://basic-formal-ontology.org/
https://github.com/bfo-ontology/BFO/ wiki *.lisp http://ncorwiki.buffalo.edu/index.php/Basic_Formal_Ontology_2.0
https://github.com/BFO-ontology/BFO2 bfo(_ro).owl
Dean Wampler @deanwampler ;might help pick distrib-filestore; get RRDs on ceph too?
Tachyon near-term roadmap: Ceph integration (Redhat), Hierarchical Local Storage (Intel), Improve Shark perf. (Yahoo), others. #sparksummit
Kingsley Uyi Idehen @kidehen -> Semantic Networks by John Sowa
Semantic Networks: http://bit.ly/VBew3y . #LinkedData #SemanticWeb #Logic #RDF #AI #SmartData #BigData #NewSQL #SPARQL #DBMS
cbr..bn/tms action/learning
www.meetup.com/SF-Data-Science/events/188757622 meetup.com/Code-for-San-Francisco-Civic-Hack-Night
data.context(via semantics)methods&data which needs ETL that annotates well&used domainOnto Info
described data&goals should point at ways to both refine then model&predict
start w/refine w/additions, &expand from there ;use these meetups &last week of HPI KnEng class
also reminded of work2look through blogs &get product info relations;&earlier re:email qry work
look into a lisp openrefine client, similar to: https://pypi.python.org/pypi/refine-client
also at beautiful-soup equivalents/or connectors/etc.
earlier used sub-domain info &did not have as much from: https://schema.org/Product build off now
bobak retweeted David Portnoy @dportnoy “ScheMed” @W3C #healthcare data standard for #Schema.org w/ SNOMED, ICD, LOINC, ATC, RxNorm https://www.w3.org/community/schemed/ …
@csarven #LinkedData Notifications https://www.w3.org/TR/ldn/ 🔔 ED: https://linkedresearch.org/ldn/ has #SchemaOrg examples. @danbri et al, feedback welcome! 🔬
http://csarven.ca/linked-data-notifications
inbox's reminds me of sbcl's mbox msg coordiation abilities
Richard Wallis @rjw Sep 9 60+ Structured Data Tools - Create, Test, Plugins, Validators & More https://www.schemaapp.com/60-structured-data-tools-create-test-plugins-more/ …
http://blog.swirrl.com/articles/linked-data-etl/ can stream vs openrefine in ram
Karima Rafes @karima_rafes jun21 Enabling Accessible Knowledge http://csarven.ca/enabling-accessible-knowledge … #OpenScience
https://twitter.com/kmiou/status/639120630416306178 Mapping #OpenScience with a #Taxonomy http://dx.doi.org/10.6084/m9.figshare.1508606 … from the @fosterscience project http://fosteropenscience.eu/
https://twitter.com/philarcher1/status/481345638349938688 incl these data-descriptors
The most important @w3c vocabulary since SKOS, Data Cube, has its own conference in September http://semstats2014.wordpress.com/ #semstats2014 @csarven
https://twitter.com/OpenCubeProject http://opencube-project.eu/ work-packages
@marin_dim CfP 4th Int'l Workshop on Semantic Statistics, part of #ISWC2016, Oct 17, Kobe|JP http://semstats.org/2016/call-for-contributions … #LinkedData #OpenData
@fair_reviews Jan 18 We have defined new skos:closMatch relations for our review rating concepts, check them out in https://w3id.org/fr/def/core #fairreviews #skos https://pbs.twimg.com/media/DT1zkXqWAAAlpL5.jpg
#ISWC2016 has too many great tweets to list right here; maybe look at my 'likes' and I'll summarize in a bit. https://thinklinks.wordpress.com/2016/10/27/trip-report-iswc-2016/
several workshops/etc, especially: #SemStats
@dandellaglio Dec 2 Videos of @ISWC2016 talks are available at http://videolectures.net/iswc2016_kobe ! #ISWC2016
@OpenCubeProject: Toward a Statistical Data Integration Environment - The Role of Semantic Metadata https://t.co/NGezK3HrOH
https://twitter.com/kalampokis/status/639020080358146048 opencube slides
@kalampokis: Our slides for the @OpenCubeProject workshop. Next at the #eGov2015 & #ePart2015 conf http://t.co/02Cunhyzfj #LinkedData #OpenData #BigData
OpenCube Project @OpenCubeProject
Webinar recording on the OpenCube Toolkit at https://vimeo.com/139921190 #linkedstatistics #lod #analytics #opendata
Slide deck on the OpenCube Toolkit as used during webinar of September 15th available at http://www.slideshare.net/OpenCubeProject/the-opencube-toolkit-webinar … #linkedstatistics #analytics
@AlfFyhrlund Publish Statistical Data In Linked Data Format: http://opendatahandbook.org/solutions/en/Linked-Data-Format/ …
https://www.w3.org/2013/share-psi/bp/stats/ https://www.w3.org/TR/vocab-data-cube/
retweeted: Christopher @communicating STATO is a General Purpose STATistics Ontology http://stato-ontology.org/
m bobak Retweeted Samuel Lampa @smllmp Oct 15 And my favorite poster: Alejandro Andrejev's work on Scientific #SPARQL. Interesting stuff! http://www.it.uu.se/research/group/udbl/SciSPARQL …
@smllmp Jun 9 Slides: Linked Data for improved organization of research data https://www.slideshare.net/SamuelLampa/linked-data-for-improved-organization-of-research-data … #linkeddata #semanticweb #excelhell
http://yieldbot.github.io/flambo/ have wanted lisp on spark's rdd's (in ceph or similar)now w/clj
https://amplab.cs.berkeley.edu/publication/graphx-graph-processing-in-a-distributed-dataflow-framework/
Making sense of LSD: http://csarven.ca/sense-of-lsd-analysis … #LinkedData #SemStats #LinkedResearch
https://github.com/csarven/lsd-sense http://www.cs.bham.ac.uk/~pxt/IDA/lsa_ind.pdf
http://radimrehurek.com/gensim/index.html https://github.com/albertmeronyo/SemanticCorrelation .
https://semtools.ecoinformatics.org http://ontolog.cim3.net/cgi-bin/wiki.pl?MarkSchildhauer
https://sonet.ecoinformatics.org https://www.nceas.ucsb.edu http://notional.ddns.net/cnt3.txt
Bringing biodiversity data2the SemanticWeb http://www.biomedcentral.com/1471-2105/15/257/abstract
https://en.m.wikipedia.org/wiki/National_Center_for_Ecological_Analysis_and_Synthesis stopped4coffee&ended up2blocks away would still love2do sci semweb work for them
-I should(re)apply4: https://www.nceas.ucsb.edu/positionsopen#Scientific%20Programmer ;1more time
@m8nware (m8n)ware Open for Business http://lisp-univ-etc.blogspot.com/2017/01/m8nware-open-for-business.html … ;also look like fun
Still interested in: @ontologysummit Jan 2 Presented: Eric Little @osthus Integrating data systems http://bit.ly/222R3Z8 #ontologysummit #bigdata ;as well
https://pbs.twimg.com/media/DI5bUU0V4AA-VMs.jpg http://ontologforum.org/index.php/ConferenceCall_2016_03_10
now if I could also get to see https://en.m.wikipedia.org/wiki/Information_Sciences_Institute on this trip, that would be great
finally also applied for a position w/ https://tw.rpi.edu still really interested in semantic e-sci&more..
http://semanticweb.com/rdf-critical-successful-internet-things_b42994
http://semanticweb.com/semantic-data-ecosystem-oil-gas-sector-norway_b43833
http://publications.hevs.ch/index.php/publications/show/1718 heterogeneous distrib db,semweb api
http://strataconf.com/stratany2014/public/schedule/detail/37796 semweb graph analysis
SemanticBot @semanticbot · semantic web visions for internet of things.
wondering: does cross domain linking make sense yet http://bit.ly/V44W8K
=semweb+IOT=> http://www.w3.org/2014/02/wot/report.html#data
http://www.w3.org/community/rsp/ gets back2 instans
http://www.sensormeasurement.appspot.com/?p=ontologies http://everywarelab.di.unimi.it/palspot
- http://sensormeasurement.appspot.com/ ?p=m3 http://www.w3.org/2005/Incubator/ssn/ssnx/ssn#
http://www.eurecom.fr/~gyrard/publication/m2mPresentationGyrardV2.pdf WFIOT_Gyrard.pdf
https://iotdb.org/social/imadeit/tagged/Semantic-Web
http://www.etsi.org/deliver/etsi_tr/101500_101599/101584/02.01.01_60/tr_101584v020101p.pdf
http://www.biomedcentral.com/1755-8794/7/S1/S12 auto detect&resolve measure-unit aggr-data conflicts
http://www.arl.army.mil/arlreports/2007/ARL-TR-4172.pdf Meterology
http://didattica.arces.unibo.it/file.php/76/Tutorials/Semantic_Web_09_smart_environment_applicationsv2_R_WEBSITE.pdf
http://hal.archives-ouvertes.fr/docs/00/64/21/93/PDF/IotMiddleware.pdf
http://www.vtt.fi/inf/pdf/researchhighlights/2013/R7.pdf
MBR model-based chem
In search of a "robo-chemist" that can synthesize any organic compound: http://bit.ly/1pXEQMV via @NatureNews pic.twitter.com/nuEoeGDoZL
Organic synthesis: The robo-chemist : Nature News & Comment , see more http://bit.ly/1oeyq0g
researchobject.org @researchobject Carole's keynote at #vivo2014 on #researchobject #reproducibility http://www.slideshare.net/carolegoble/goble-keynote-vivoscits2014 …
Victoria Stodden @victoriastodden Nov 13 Urbana, IL very cool implementation of reproducibility: data, code, worksflows as first class scholarly objects http://www.researchobject.org/ @researchobject
http://franz.com/success/customer_apps/bioinformatics/mdl_story.lhtml
http://jeffshrager.org/vita/pubs/2001designforscience.pdf
http://jeffshrager.org/vita/pubs/2010chasm.pdf http://commerce.net/people/jeff-shrager/
how2do an expanded ver of this now: semweb/iIOT.. more on this soon;also see re:semSci tweets
http://dspace.mit.edu/handle/1721.1/37383#files-area reminds me2map sense data2component-Onto(s)
Retweeted by m bobak
NSF Comp & Info @NSF_CISE · Aug 25
RoboBrain -- centralized, online brain for robots to tap into. #NSFfunded research in @PopSci http://bit.ly/1p8OuBh
Retweeted by m bobak @semanticbot Call-by-meaning: applying the semantic web to APIs http://bit.ly/1wHDHlr
@reddit_lisp #lisp Common Lisp Standard Draft |
http://cvberry.com/tech_writings/notes/common_lisp_standard_draft.html
http://cvberry.com/downloads/cl-ansi-standard-draft-w-sidebar.pdf
https://archive.org/stream/ost-computer-science-book_lisp/book_lisp_djvu.txt
http://radar.oreilly.com/2014/06/ais-dueling-definitions.html
http://en.wikipedia.org/wiki/Model-based_reasoning
MBR simgen
http://www.aaai.org/Papers/AAAI/1993/AAAI93-084.pdf
http://ijcai.org/Past%20Proceedings/IJCAI-95-VOL2/PDF/099.pdf
https://en.wikipedia.org/wiki/Scientific_modelling
would even work on: http://www.ncsa.illinois.edu/about/jobs/A1400040 if I could use Stella:
www.isi.edu/isd/LOOM/Stella /documentation/manual.pdf www.isi.edu/~hans/publications/LUGM99.pdf
from http://www.isi.edu/isd/LOOM/PowerLoom/
but cl-autowrap & abcl/etc are still options too;I've also wrapped end-clients w/CLIPS/Jess
http://www.isi.edu/isd/LOOM/ came 1st/but still using KM more
Still use sqlDB->protege_db-tab->pprj-files->clips-loadable though a Lisp ORM w/lisa.sf.net (or agraph if it was easier2use4work)
https://franz.com/about/press_room/2013_AllegroGraph_Results.lhtml turns out apollo did use a lisp (graph-store) again
@afelproject Our #learninganalytics data release ihas an RDF version of the Coursera Forum data using the AFEL Core Data Model http://data.afel-project.eu/catalogue/learning-analytics-dataset-v1/ … ;have wanted ~this
When doing a lisp/Common-Logic review saw/downloaded latest powerloom4, &ran: powerloom --gui
this still has much of the more original direction that Protege has lost after v3
m bobak Retweeted Jon Atack @jonatack The Reasoned Lisper | Chris Kohlhepp's Blog https://chriskohlhepp.wordpress.com/the-reasoned-lisper/ …
have a bit on planning in kmp, want more than stips, PDDL; NDDL, ANML
http://en.wikipedia.org/wiki/Planning_Domain_Definition_Language
https://code.google.com/p/europa-pso/wiki/NDDLReference
http://ti.arc.nasa.gov/m/pub-archive/1423h/1423%20(Smith,%20D).pdf
Paul Groth @pgroth Stoked about the panel I’ll be moderating at #RDAPlenary - #datascience science meets #escience
@TheContentMine talk "ContentMine: Open Data and Social Machines" slides at http://www.slideshare.net/petermurrayrust/contentmine-open-data-and-social-machines …
=rules
kmp> gred -n rule note
97:build-rule
175:could I have lisa.sf.net match on wilbur instances; so like jess w/swrl rules;& instans like too
180: listed under: https://www.w3.org/2001/sw/wiki/Category:Rule_Reasoner
189:attempto: github.com/tkuhn/AceRules http://svn.cs.rpi.edu/svn/tayloj/cl-ace !wrk/but would be fun
251:en.wikipedia.org/wiki/Rule_Interchange_Format /v www.brcommunity.com/b597.php DecisionModelNotation
424: qry/rules
http://www.slideshare.net/swadpasc/paschke-rule-ml2014keynote
instans another CEP http://en.wikipedia.org/wiki/Complex_event_processing
Started a very long journey w/rules w/: https://github.com/briangu/OPS5 incl mixed w/C molecular-dynamics code for MS thesis
https://gigaom.com/2014/09/17/watch-the-live-stream-of-our-future-of-ai-and-deep-learning-event-tonight/
@etzioni best part/but everything I got to see was interesting; hope to catch archive
switched from osx to linux for daily use; also getting 1st cut twitter archive w/script of rainbowstream
would like to iterate on this&organize &maybe annote this, &build out from this;.. Should use: USER(1): (qa "twit")
#<SYSTEM cl-twit-repl / cl-twitter-20131003-git / quicklisp 2014-08-26>
#<SYSTEM cl-twitter / cl-twitter-20131003-git / quicklisp 2014-08-26>
#<SYSTEM twitter-elephant-driver / cl-twitter-20131003-git / quicklisp 2014-08-26>
#<SYSTEM twitter-mongodb-driver / cl-twitter-20131003-git / quicklisp 2014-08-26>
http://common-lisp.net/project/cl-twitter/ http://chaitanyagupta.com/lisp/cl-twit/
http://cl-twitter.blogspot.com/ https://github.com/quek/twitter-client alt any2arch as km
make KM objs around the final URLs, &collect txt/times/etc around it /try to classify
use tree of given #tags, and guesses (as prismaticbottelnose...)tie into km components..
http://www.quora.com/?qp_story=4185418&window_id=dep208-3097776695201503467 cyc on twit
also: http://www.cliki.net/Chirp used cl+ssl from mind-pool-site&can:
(chirp:stream/user #'(lambda (message) (when message (format T "~&STREAM: ~a~%" message)) T))
other than lisp nlp&stanford coreNLP there is: scala's Epic
http://www.meetup.com/sfmachinelearning/events/202556852/
http://www.scalanlp.org/ https://github.com/dlwh/epic/
http://www.quora.com/search?q=cyc ; @danbri · Mar 2 Cyc APIs - https://github.com/cycorp
considering: http://www.meetup.com/Open-Data-Bay-Area/events/209112862/
context: http://www.meetup.com/Data-Mining/events/206195122/ like usf parking app just before but much more; openstreetmap etc incl graphX
@PotoniecJ Not-So-Linked Solution to the Linked Data Mining Challenge 2016 #knowlod #ldmc #ESWC2016 http://www.slideshare.net/JdrzejPotoniec/notsolinked-solution-to-the-linked-data-mining-challenge-2016 … via @SlideShare
Titus Brown @ctitusbrown · Dear computational scientists everywhere, please go look at the NIH Software Discovery Index report & comment! http://softwarediscoveryindex.org
The Imminent Decentralized Computing Revolution http://on.wsj.com/1sxIuUn (http://bit.ly/1p4BeZW )
http://www.slideshare.net/allaves1/towards-efficient processing of rdf data streams
Jean-Paul Calbimonte @jpcik 17h17 hours ago #rsp RDF #streams workshop is Tomorrow at #ESWC2015 ! Happy to announce our invited speaker @AdrianPaschke http://www.w3.org/community/rsp/rsp-workshop-2015/ …
Open Science retweeted Lora Aroyo @laroyo Nov 14 Amsterdam, North Holland
Software Sustainability: Better Software Better Science #openscience #opensource http://www.slideshare.net/carolegoble/software-sustainability-better-software-better-science … via @SlideShare @CaroleAnneGoble
Kaitlin Thaney @kaythaney · Nov 16
My slides from this morning’s keynote at #WSSSPE on Designing for Truth, Scale + Sustainability: http://www.slideshare.net/kaythaney/designing-for-truth-scale-and-sustainability-wssspe2-keynote … #openscience
SemanticBot @semanticbot · Nov 14
Generating Biomedical Hypotheses Using Semantic Web Technologies discovery formalization http://slidesha.re/1sPVgYR
Machine Learning Will Make Its Mark On The Sciences http://www.dataversity.net/machine-learning-will-make-mark-sciences/ … via @DATAVERSITY
@RainerJoswig Mobile Ad Hoc Network communication protocol for Human-Robot Search and Rescue Teams. In Common #Lisp / #sbcl https://github.com/jsmpereira/chopin-routing …
http://chopin.isr.uc.pt/ /didn't work yet
still want2find sofware/srvc to compose it: figshare @figshare
Theres also some interesting work on 'grabbing' metadata here: https://github.com/mbjones/codemeta … #ShakingItUp14
more@: http://www.digital-science.com/events/shaking-it-up-how-to-thrive-in-and-change-the-research-ecosystem
#ShakingItUp14 and live/archived http://ll.ms-studiosmedia.com/events/2014/1411/ShakingItUp/live/ShakingItUp-live.html …
If not previously stated any repositry that I have ability to mark as bsd or mit I do.
Also to incl: when advising:
Any software prototypes created for this project may utilize software tools
and/or design code that the advisor has created independently of this project and/or which is intended to be
used by advisor in other capacities. Therefore, while the company will own the customized instantiation of
the prototype, the advisor retains the ownership in the underlying software tools and design code. The
software prototype is not intended for production or “off the shelf” use and is provided for design purposes
only.
pull together nlp work: cl-nlp/langutils/.... kme/sys has a listing ;for1st cut info-extract,look4templated info(high level regexp)/if possible/but will prob need more
Idafen SP @idafensp · Dec 10
Conservation of Scientific Workflow Infrastructures by Using Semantics - 2012 by @idafensp #escience http://www.slideshare.net/idafensp/conservation-of-scientific-workflow-infrastructures-by-using-semantics-2012 … vía @SlideShare
PhD Thesis: Conservation of Computational Scientific Execution Environments f... #conservation slideshare.net/IdafenSantanaP… vía @SlideShare ;wicus onto ; http://scitech.isi.edu/publications/xsede-reproducibility
My slides on our work for addressing reproducibility using semantics: slideshare.net/dgarijo/reprod… #dagstuhl #seminar16041 ;;wicus http://vocab.linkeddata.es/wicus/wicus ; http://vocab.linkeddata.es/
http://mayor2.dia.fi.upm.es/oeg-upm/files/isantana/ontologies/wicus.owl https://github.com/idafensp
http://www.slideshare.net/IdafenSantanaPrez/phd-thesis-conservation-of-computational-scientific-execution-environments-for-workflowbased-experiments-using-ontologies
@dbworld_ http://ift.tt/1SsW2JZ Using Cloud-Aware Provenance to Reproduce Scientific Workflow Execution on Cloud. (arXiv:1511.09061v1 [cs.DB]) #da…
Carly Strasser @carlystrasser .@PLOSBiology step-by-step guide to computing workflows by @ashley17061 & @tracykteal http://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.1002303 … #MooreData
@sparontologies Describing the whole workflow resulting in a publication of an article by means of #PWO http://www.sparontologies.net/ontologies/pwo #SPAROntologies
rachelbruce @rachelbruce · Dec 15
Interesting idea - Use semantic desktop to capture contextual research data - see: http://researchatrisk.ideascale.com/a/index #RDSpring #jisc
https://news.ycombinator.com/item?id=9202286 want2find more of the more recent sem-desktop links
http://ceur-ws.org/Vol-404/Paper7.pdf Semantic based Project Management (Semantic-Desktop - web srvs - SemProM) ;4.3 sem-dsk CALO ..
The Story of Siri, by its founder Adam Cheyer https://wit.ai/blog/2014/12/18/adam-keynote …
Carlos Gil @CarlosGil83 · Siri’s Inventors Are Building a Radical New AI That Does Anything You Ask http://wrd.cm/1R2zkcz via @wired
Jay Byte Off @tobyjaffey · Dec 16
@BorisAdryan This might interest you, http://www.slideshare.net/PayamBarnaghi/semantic-technologies-for-the-internet-of-things … Good overview of semantic technologies and ontology for IoT
was just bookmarking to https://twitter.com/favorites then checking, but now using pocket (helps w/upcoming unpluged vacation;)
Kingsley Uyi Idehen @kidehen · Nice piece of history by John F. Sowa: http://www.jfsowa.com/ikl/index.htm . #SemanticWeb #Logic #AI #RDF #IKL #CommonLogic #History #LinkedData
-http://plato.stanford.edu/entries/computational-mind/
planetlisp pgloader http://tapoueh.org/blog/2015/01/22-my-first-slashdot-effect.html #<SYSTEM pgloader / pgloader-3.1.1 / quicklisp 2015-01-13>
David Wood @prototypo Science Bots: A Model for the Future of Scientific Computation? http://buff.ly/1D9N9xd #semweb
jahendler @jahendler @prototypo what these need is an agent markup language! (Oh, wait, time warped into the past - just ignore me)
@ontologysummit Work in #AI trenches is more nuanced. THink #ontology #artificialintelligence #thatsgenius http://bit.ly/1RS1dUp
a lot from https://twitter.com/hashtag/ontologysummit?src=hash , https://twitter.com/ontologysummit 28,287 tweets archived
@ontologysummit Join #Ontolog Forum online today http://bit.ly/1PI1MPY #ontology 12:30EST #semantic #ontology
http://webconf.soaphub.org/conf/room/summit_20160218
@DaSeLab Ontolog talk today by @aakrisnadhi on Dealing with Semantic Heterogeneity in Data Integration - http://ontologforum.org/index.php?title=ConferenceCall_2016_02_25 … 12:30pm eastern
https://s3.amazonaws.com/ontologforum/OntologySummit2016/2016-02-25_GeoSciences/ConferenceCall_20160225.mp3
http://ontologforum.org/index.php/ConferenceCall_2016_03_03 Cloud Services and Semantic Integration
http://ontologforum.org/index.php/ConferenceCall_2016_03_10 Health Sciences: IR,NLM interop, integrate, sem-data-lake:
https://s3.amazonaws.com/ontologforum/OntologySummit2016/2016-03-10_Healthcare/The-Semantic-Data-Lake-in-Healthscience--ParsaMirhaji.pdf
@micheldumontier Dr. Parsa Mirhaji presented "Semantic Data Lake in Health Care" as part of #yosemiteproject seminar series #semweb
Kincho H. Law Cross-domain http://bit.ly/222R3Z8 #ontologysummit #law #ontology #informationretrieval #discovery https://pbs.twimg.com/media/CtDgXISWgAE6ZNN.jpg
http://ontologforum.org/index.php/ConferenceCall_2016_03_17 Semantic Integration in Engineering /onto in manufacture/design model-based(sys)engineering
Kevin Lynch: @Raytheon @DARPA project perspective on model-based #SDLC http://bit.ly/1PbI0sn #ontologysummit #AI
http://ontologforum.org/index.php/ConferenceCall_2016_03_17 https://pbs.twimg.com/media/DLyo4w4VwAAfF9f.jpg
Gruninger: "Implicit #semantics is big challenge" http://bit.ly/1PbI0sn #ontologysummit #ontology #manufacturing
http://www-ksl.stanford.edu/htw/dme/thermal-kb-tour/tour-01.html .CML.. http://www-ksl.stanford.edu/knowledge-sharing/
http://www-ksl.stanford.edu/projects/htw/KSL-MADE-PROPOSAL/KSL-MADE-Prop.html
http://ontologforum.org/index.php/ConferenceCall_2016_03_24 Semantic Integration in Finance ;FIBO
http://ontologforum.org/index.php/ConferenceCall_2016_03_31 Semantic Integration for Geographically Distributed Sensor and Control Systems
missed query where I could have explained rule-sets to the group
http://ontologforum.org/index.php/ConferenceCall_2016_04_07 Health Sciences
Meet 7-APR #Ontology semantic interop for #EHR + healthcare bit.ly/1MduxFZ #OntologySummit #HIT
http://ontologforum.org/index.php/ConferenceCall_2016_04_14 Synthesis (of the last topic/weeks)
http://ontologforum.org/index.php/ConferenceCall_2016_04_21 Finance and Retail
http://ontologforum.org/index.php/ConferenceCall_2016_04_28 Communiqué (geo,health,engineering,finance)
http://ontologforum.org/index.php/ConferenceCall_2016_05_05 complete the Summit Communiqué and handle logistics for the Symposium
@ontologysummit Join 9A EDT Tag #OntologySummit Virtual+F2F May9-10 #semantic #interoperability #ontology http://bit.ly/1V6K11y
@ontologysummit Feb 22 #OntologySummit '2017 12:30EST Weekly thru May "AI, Learning, Reasoning + Ontologies" http://bit.ly/2kV2PEr
...several interesting ones,
http://ontologforum.org/index.php/ConferenceCall_2017_04_19 ..
Combining Statistics and Semantics to Turn Data into Knowledge L Getoor @ucsc then Y Gil@isi.usc
Reasoning about Scientific Knowledge with Workflow Constraints: Towards Automated Discovery from Data Repositories
http://www.meetup.com/USF-Seminar-Series-in-Analytics/events/216142252/
iot+datasci+mbr reminds me or re ge talks using eureqa
Phys.org @physorg_com · Feb 3 Artificially intelligent #robotscientist 'Eve' could boost search for new drugs http://phy.so/342205342 @Cambridge_Uni
I would retweet if ISI seminar wasn't in MS only format:
AI Research at ISI @ISI_AI AI seminar at ISI by Ross King, Automating Chemistry and Biology using Robot Scientists, http://webcasterms1.isi.edu/mediasite/Viewer/?peid=be7fe831928d43b098690360cab8929a1d …
Oliver Hoffmann @wiemanindenwald · Feb 3 After #OpenScience we should have #SemanticScience: Human- and machine-readable, so conclusions can be computed across publications :)
Kingsley Uyi Idehen @kidehen · 4h 4 hours ago
A #LinkedData #URI that identifies "Linking Scientific Metadata (presented at DC2010)" presentation on @slideshare: http://linkeddata.uriburner.com/about/id/entity/http/www.slideshare.net/jqin/dc2010-linking-sci-metadata …
@semanticbot · AI vs. Humans. TEDx by Jim Hendler, originator of semantic web and a researcher at , my PhD alma mater http://bit.ly/1A3peCm
Hacker News @HNTweets · Announcing AllegroGraph 5.0: http://franz.com/about/press_room/allegrograph_5.0_2-9-2015.lhtml … Comments: https://news.ycombinator.com/item?id=9028439
@TonyAgresta2 · National Science Foundation project "GeoLink" launched https://cse.wright.edu/news/19m-nsf-project-geolink-launched-concerning-data-infrastructure-earth-sciences … #semanticweb #SPARQL #RDF #textmining
@ontologysummit Apr 5 Presented: Adila Krisnadhi Modular #Ontology for data int w/ #GeoLink http://bit.ly/21jTVk4 #ontologysummit
http://ontologforum.org/index.php?title=ConferenceCall_2016_02_25
@ontologysummit Apr 26 Presented: Ruth Duerr #Semantics + Discovery/use in #geoscience data http://bit.ly/21jTVk4 #ontologysummit
http://ontologforum.org/index.php?title=ConferenceCall_2016_02_25
http://www.meetup.com/USF-Seminar-Series-in-Analytics/events/215114882/ incl reader analytics
Just unfollowed 240 feeds from twitter, think it's time to get a bit more productive. (Enough thinking/more doing;)
Either it was accitental follows on phone or something fishy is up, but I don't think I had that many.
Only got through bottom third of following page, so more soon;@~1/2 up to 335 feeds unfollowed.
Some adds now too, but down 491^h^h10 now, after a pass through who I'm following.
http://www.meetup.com/SF-Artificial-Intelligence-in-health/events/220358931/ get vid of mtg1 which is more AI focused; uneven kn, but still some good discussion pnts
Start a simple mapping of restricted english to sparql queries on dbpedia/wikidata; Start w/direct asks of an attribute on a particular subj; use context2disambiguate.
https://web.archive.org/web/20140701100232/https://blog.standardanalytics.io/post/linked-data-for-science &tweeted a few more blog links
https://science.ai/ from http://www.standardanalytics.io/press/
http://notional.no-ip.org/intro2KE.pdf should be added to my CV's &I should check any other paper/etc that should point to archive.org now
intro2KnowledgeEngineering, w/some examples from my career in that area
Finally in town to catch semweb-iot call http://ontolog-02.cim3.net/wiki/ConferenceCall_2015_02_26 will catch more
Khalid Belhajjame @kbelhajj · Feb 27 A suite of ontologies for workflow research object reproducibility http://tinyurl.com/l4cdq73 @MozillaScience @openscience @eScienceCenter
Khalid Belhajjame @kbelhajj My work on mining #workflows for fragment reuse that I presented in IKC is available online http://tinyurl.com/ng5gbkm #ic1302 @researchobject
Jodi Schneider @jschneider Current paper uses ACT, an ontology that combines workflow & spatiotemporal perspectives: http://ontologydesignpatterns.org/wiki/Submissions:An_Ontology_Design_Pattern_for_Activity_Reasoning … Nice! #LISC2015 #ISWC2015
@kbelhajj eScience'16 talk on converting scripts into reproducible workflow #ResearchObject #prov #yesworkflow
https://www.slideshare.net/kbelhajj/converting-scripts-into-reproducible-workflow-research-objects
Daniel Garijo @dgarijov My slides for the Open Research Data day: http://www.slideshare.net/dgarijo/open-research-data-day-is-pre …
SemanticBot @semanticbot · Organizing Scientific Competitions on the Semantic Web http://zoot.li/543sc ;re/a version of my nonprofit Ycomb idea
also like my last yc idea: http://thinklab.com/blog/introducing-thinklab-a-platform-for-massively-collaborative-open-science/38
"Sirius is an open end-to-end standalone speech and vision based IPA service similar to Siri, Google Now, Cortana.." http://sirius.clarity-lab.org/
Researchers just built a free, open-source version of Siri http://venturebeat.com/2015/03/14/researchers-just-built-a-free-open-source-version-of-siri/ … http://prsm.tc/Y5amAE
http://www.theplatform.net/2015/04/07/massive-distributed-ai-moves-out-of-the-box/ mention boinc like compute; which I have considered
@SiemensWoT @fmichahelles http://ontolog-02.cim3.net/wiki/OntologySummit2015 … ;has a few good mtgs & many good docs
-upcoming: @BorisAdryan · Mar 12
Oh look! My @OReillySolid webcast in May already has a landing page: http://www.oreilly.com/pub/e/3365 . Will be talking about #ontologies in the #IoT.
@DMDII_ .@SiemensUSA Innovation Day is getting started! Be sure to join the live webcast and follow #SiemensInnovates to see everything happening today @UILABS_ https://sie.ag/2IQm0cu
Bruno Gonçalves (@bgoncalves) tweeted at 5:14am - 17 Mar 15:
[1503.04374] Science Bots: a Model for the Future of Scientific Computation? bit.ly/1MIgSRn (https://twitter.com/bgoncalves/status/577883911155531776?s=17)
SemanticBot (@semanticbot) tweeted at 6:41am - 19 Mar 15:
The ESIn special issue Semantic eScience is now formally published bit.ly/1H2kcEX (https://twitter.com/semanticbot/status/578623108262858752?s=17)
Ontology Summit @ontologysummit · Join #OntologySummit - Today - Discuss 2015 Summit Communique 12:30EDT 26-Mar Thurs http://bit.ly/1CLKqMY
Ontology Summit @ontologysummit Jan 28 Save May 9-10 - Ontolog Summit 2016 USA-VA http://bit.ly/202vbsz #ontology #semanticweb #semantic
Mike Bennett @MikeHypercube Feb 11 Ontology Summit is under way - launch meeting now, http://ontologforum.org/index.php/ConferenceCall_2016_02_11 …
aside: sem file sys uri same-as ness update diffs many uses
http://www.meetup.com/sfmachinelearning/events/220582792/ use Spark for image/timeseries
http://www.meetup.com/USF-Seminar-Series-in-Analytics/events/219616988/ A/B testing
Applied for https://www.ycombinator.com/apply then https://www.shuttleworthfoundation.org/thank-you/ within 24hrs, w/same non-profit idea as last YC round, w/early mockup@ notional.no-ip.org
want2check out: https://www.manylabs.org/ http://www.fiatphysica.com/research/citizen-science/ http://scistarter.com/
(scicast. org/com scientistsolutions.com) citizenscience.org citizensciencecenter.com citizenscienceassociation.org
@TACC hosted the National Data Service meeting, links data repositories for #bigscience https://www.tacc.utexas.edu/-/tacc-hosts-3rd-national-data-service-consortium-in-austin … http://www.nationaldataservice.org/
https://wiki.ncsa.illinois.edu/display/NDS/National+Data+Service+Home https://github.com/nds-org http://isda.ncsa.illinois.edu/drupal/project/nist-core ...
DBWorld Updates @dbworld_ · Mar 30 http://ift.tt/1CqSSj0 Towards Exascale Scientific Metadata Management. (arXiv:1503.08482v1 [cs.DB]) #databases
Susan Athey @Susan_Athey;now at: http://www.nasonline.org/programs/sackler-colloquia/completed_colloquia/Big-data.html
@AnimalSpiritEd @dynarski My talk at National Academy of Science: Drawing Causal Inference from Big Data, here: http://www.nasonline.org/programs/sackler-colloquia/upcoming-colloquia/Big-data.html …
@mrtz ICYMI, "Elements of Causal Inference" is freely available from this page: https://mitpress.mit.edu/books/elements-causal-inference … I much enjoyed learning from this new text book by Peters, Janzing, and Schölkopf.
@jahendler · Mar 27 updated version of my “Broad Data” talk, presented at #CODS2015 now available in slideshare - http://www.slideshare.net/jahendler/broad-dataindia-2015share … #bigdatamedia
Bob DuCharme @bobdc · Mar 29 ;a few more big/hadoop-ish etc rdf/graph stores, but this one a bit more interesting as it's on spark: ;need to add(a few)to: bit.ly/TP8gfz
New blog entry: "Spark and SPARQL; RDF Graphs and GraphX" http://www.snee.com/bobdc.blog/2015/03/spark-and-sparql-rdf-graphs-an.html … #Spark #GraphX #RDF #SPARQL
@LearningSPARQL Great to see the SPARQL/Spark combination S2RDF come along forschung/projekte/DiPoS/S2RDF.html
@LearningSPARQL More SPARQL + Spark, also via @hatemhamza https://github.com/tyrex-team/sparqlgx
http://afs.github.io/rdf-thrift/ rdf-binary-thrift.html http://www.semanlink.net/tag/rdf_thrift.html
@dbworld_ http://ift.tt/1Z1fL6y SPARQL query processing with Apache Spark. (arXiv:1604.08903v1 [cs.DB]) #databases
Olaf Hartig @olafhartig · Apr 4 Nature publishes Linked Data consisting of 270M RDF statements http://www.nature.com/press_releases/ldp.html …
Siri Jodha S. Khalsa @sjskhalsa · Apr 8 #ClearEarth is an NSF DIBBS project building semantic resources for geology, cryology, biology http://1.usa.gov/1yWcOql at #ECTechHands
Gary Berg-Cross @garybcross Yolanda Gill Geosoft project to help scientists share knowledge http://www.geosoft-earthcube.org/ #ectechhands #earthcube @resdatall @datacite @NSF
@MBstream · semantics4sci http://www.geosoft-earthcube.org /ongoing-work /demos https://www.youtube.com/watch?v=X8uhs28O3eA … ..from: http://earthcube.org/group/tech-hands-meeting … ;& http://vertnet.org
https://github.com/IKCAP/turbosoft.git initial install
@EarthCube Jan 19 #earthcubetools: OntoSoft and the Geoscience Paper of the Future webinar being presented this Friday by Yolanda Gil! http://goo.gl/DEGJGP ; http://ontosoft.org/gpf
https://twitter.com/earthcube/status/639557310629568513 catch up
María Poveda @MariaPovedaV "Ontology Engineering in the Era of Linked Data" in @asist_org with @ocorcho and @asungomezperez @oeg_upm http://www.asis.org/Bulletin/Apr-15/AprMay15_Corcho_EtAl.html …
m bobak retweeted Ontology Summit @ontologysummit · Apr 12 Join us for virtual #Ontology Summit on #IoT Challenges Apr 13-14 http://bit.ly/1aV5uGz
http://www.meetup.com/Delightful-Data-Products/events/221078062/ sythesizing human judgment+machine learning for better recommendations
and
http://www.meetup.com/Distributed-Work/events/221376369/ Is Science just a game? @crowdflower, on Foldit&EteRNA etc
Harald Sack @lysander07 Apr 14
Slides from kickoff meeting of my current seminar Semantic Multimedia at #HPI https://docs.google.com/presentation/d/1LXa6uGiac0m6wsS9ZmUmLb1jr3OXTb1FrMqqNMknDLw/edit?usp=sharing … #semanticweb pic.twitter.com/PzfGSbdirI
m bobak @MBstream Apr 15
@lysander07 hope we can follow along @ http://semmul2015.blogspot.com/ &still catch as much as I did from your other classes, openHPI offered online
Harald Sack @lysander07
@lysander07 In the lecture today you will learn about the fundamentals of InformationRetrieval https://www.slideshare.net/lysander07/10-information-retrieval-1 … @KITKarlsruhe @FIZKarlsruhe
@lysander07 In the lecture today, you will learn how to properly evaluate search results https://www.slideshare.net/lysander07/11-information-retrieval-2 … #ise @FIZKarlsruhe @KITKarlsruhe
@lysander07 In the lecture today, you will learn more about Exploratory Search and Recommender Systems with #LinkedData https://www.slideshare.net/lysander07/13-exploratory-search …
@MBstream Sure :) All course material will be published as well as the ongoing work/topics/discussions in our blog at http://semmul2015.blogspot.com/
MEMEX: https://twitter.com/forbestech/status/589106044841893889
Glen C @GlenCoppersmith · 4h4 hours ago DARPAs memex tools open source software now online: http://www.darpa.mil/opencatalog/MEMEX.html … Some great tech in there!
DARPA @DARPA · May 11 Happy to do our part... http://www.darpa.mil/OpenCatalog/ MT @whitehouseostp: 2 Yrs of Transformative Open Data for Public Good: http://wh.gov/iKTtk
@whitehouseostp New blog: Making Federal Research Results Available to All https://www.whitehouse.gov/blog/2017/01/09/making-federal-research-results-available-all
@morgantaschuk Mar 1 NASA releases software catalogue; public access to software for everything from system admin to life support https://software.nasa.gov/
https://data.nasa.gov/ https://open.nasa.gov/ https://code.nasa.gov/?q
Jens Lehmann @JLehmann82 Due to many good submissions, we turned Know@LOD into a full day workshop! …http://knowalod2015.informatik.uni-mannheim.de/ #machinelearning #semanticweb
m bobak retweeted Cristian Consonni @CristianCantoro · Ask Platypus http://buff.ly/1bjZcAh a Q&A engine for Wikidata
m bobak @MBstream · Apr 21 https://www.w3.org/wiki/Main_Page/Linked_Data_2015 … ... http://www.digital-science.com/blog/events/shaking-it-up-challenges-and-solutions-in-scholarly-information-management/ …
Erik Wilde @dret · guest speakers @smarzani (@DQuidTeam) and @vatsal1212 (@LAutomation) tomorrow in our @BerkeleyISchool #IoT course http://dret.net/lectures/iot-spring15/ …;pdf protected though
http://www.meetup.com/SF-Artificial-Intelligence-in-health/events/221559787/ reminded me of one of our old cbr csr apps w/brightresponse(nlp)front-end;look@cto's other work
http://www.meetup.com/USF-Seminar-Series-in-Analytics/events/219782563/ http://www.ai.sri.com/~braz/ Usf talk BN w/prolog like engine ;me OOBN w/prototypes
;Me nun-fnc cache that interpolates w/confidence; Also lid-fnc2it &ret anytime(lazy)series of better answ as needed; Could break dwn mbr eqn(net)4better interpolations
Pp generative story; Probmods.org/conditioning.html; Mcmc metropolis; Church webppl. Model not tied2pkg
www.meetup.com/SF-Bayarea-Machine-Learning/events/221739934/ Globally Scalable Web Document Classification Using Word2Vec;Extracting information from unstructured web documents is a common problem...
started w/: ND4J: A scientific computing framework for the JVM ;has scala could do clj, but probably already something similar in lisp; rest was ok, but might look@ http://dev.panlex.org/linking now
http://ld.panlex.org/rdf.html http://ld.panlex.org/downloads/releases/2013-02-14/2013-02-14-panlex-ontology.ttl linguistic-lod.org/llod-cloud www.semantic-web-journal.net/system/files/swj560.pdf
m bobak @MBstream · Apr 21 https://www.w3.org/wiki/Main_Page/Linked_Data_2015 … ... http://www.digital-science.com/blog/events/shaking-it-up-challenges-and-solutions-in-scholarly-information-management/ …
https://www.futurelearn.com/courses/linked-data/1/todo/4679 INTRODUCTION TO LINKED DATA AND THE SEMANTIC WEB
finished last/3rd week: 4.0M ./w2 2.2M ./w3 2.0M ./w1 -> 8.2M .
after w3c(LD)wg, heard: [CL] Common Logic conference call - Tuesday 2015.04.28;then http://earthcube.org/event/c4p-webinar-geolink-earthcube-building-block-semantics-linked-data-geosciences
day before 2nd earthcube all hands mtg, I joined, incl these sub-groups: CogCi,GeoSemantics,GeoLink,EarthCollab,GEAR,EarthSysBridge,ODSIP
http://www.meetup.com/manylabs-workspace/events/227105389 is the closest to http://earthcube.org/event/connect-earthcube-agu that I will get this year; would like re semantic work
http://forum.stanford.edu/events/2015aiworkshop.php
https://amplab.cs.berkeley.edu/event/citris-seminar-lise-getoor-ucsc-big-graph-data-science-w-56-310-sutardja-dai-hall-noon/ Big Graph Data Science http://video.citris.berkeley.edu/playlists/webcast:
saw her(Lise Getoor)@a conf last year/still interesting: http://citris-uc.org/event/reasoning-with-uncertainty/ psl.umiacs.umd.edu
https://peerj.com/articles/cs-77/ Uncertainty modeling process for semantic technology pr-owl BN
http://www.meetup.com/Data-Mining/events/222052588/
http://www.meetup.com/USF-Seminar-Series-in-Analytics/events/220100458/ Bootstrapped Learning of Affective Indicators in Social Media Text E.Riloff
several I should add
François Belleau @FrancoisBelleau BD2K hackathon - Bio2RDF submission http://www.slideshare.net/fbelleau/bd2-k-hackathon-1-bio2rdf-submission-47949216 … via @SlideShare #hackBD2K #LinkedData
http://www.ischool.berkeley.edu/newsandevents/events/20150511-iot-showcase http://www.ischool.berkeley.edu/courses/i290-io
http://www.eecs.berkeley.edu/bears/ went w/Siemen's when I did a little work w/them; will catch up again.
https://m.slashdot.org/story/17/08/08/2119240/ai-factory-boss-will-tell-workers-and-robots-how-to-work-together they could have done
https://www.fastcompany.com/3067414/robo-foremen-could-direct-human-and-robot-factory-workers-alike a shop-planner+ years ago
xach @xach · http://news.gmane.org/gmane.lisp.common-lisp-net.devel … makes me very happy. All CVS projects on http://common-lisp.net migrated to git! #lisp
https://www.dataone.org/previous-webinars latest: Provenance and DataONE: Facilitating Reproducible Science ;getting me thinking about more about how I could help
Matt Jones @metamattj · Enjoy the @DataONEorg webinar on provenance and reproducible science using #rstats, #matlab, and web search https://www.dataone.org/webinars/provenance-and-dataone-facilitating-reproducible-science …
https://www.dataone.org/upcoming-webinar dec8 Announcing DataONE Search: A New Way to Discover Data DataONE Team
Naupaka Zimmerman @naupakaz What is provenance and why, as a scientist, should you care? Very helpful overview of data mgmt concepts/tools: http://rrcns.readthedocs.org/en/latest/provenance_tracking.html … 1/2`
See also: slides by @metamattj et al on how to link the pieces and products of research together w/ their origin http://figshare.com/articles/Reproducible_science_via_semantics_and_provenance_for_ecological_data/1512516 … 2/2
http://www.meetup.com/Distributed-Work/events/221824428/ caught end of graphistry talk @usf not long ago;aside, use of LOD/summary, incl~ayasdi; want free gruff like2;other tools2start w/2
Visually Analyzing People (And Their Impostors); also saw good twit imposter talk@icsi,incl finding emails used(via regexp),but graph analysis/heuristic notice of cnct/flow helps2
@Graphistry · Thanks for everyone who came out last night! Contact us for live demo links, and you can catch the slides @ http://www.slideshare.net/graphistry/visually-analyzing-people-with-graphs …
Asunción Gómez-Pérez @asungomezperez · May 13 @agalawrynowicz #Poznan Slides on Maximising (Re)Usability of Resources using Linked Data on http://www.slideshare.net/asungomezperez/maximising?utm_source=slideshow&utm_medium=ssemail&utm_campaign=post_upload_view_cta … …
Dave McComb @semanticarts · May 13 Just came across this great slideshare of gist in Controlled Natural Language. Excellent. https://sites.google.com/site/soemontreal/videos-and-presentations/smartcities?pli=1 … #SmartCities
Thomas Steiner @tomayac · ConceptNet, a common sense knowledge base (facts à la 🍌 are yellow): http://conceptnet5.media.mit.edu/ . From the #WWW2015 knowledge graph tutorial.
http://conceptnet.io/
https://twitter.com/tonyhammond/status/601405279444586497 New http://www.nature.com/ontologies/ . Grown core by 50%, two more domain models, MeSH links, better navigation. #linkeddata
@timalthoff All talks from #BigDataBioMed conference recorded here: http://bigdata.stanford.edu/pastevents/2017-presentations.html?mc_cid=ad1ef2764c&mc_eid=1a93cf3dc8#day_1_wednesday_may24 …
Taha Kass-Hout @DrTaha_FDA · Here are the #BD2K funded centers http://datascience.nih.gov/bd2k/funded-programs/centers … #bigdatamed & https://pebourne.wordpress.com/
The vision for data science at the NIH will undoubtedly change over time. What follows is the current vision as we prepare for the first meeting with Big Data to Knowledge (BD2K) awardees.
https://twitter.com/hoque_michelle/status/601846755425128448
@hoque_michelle: DeepDive helps create structured data from unstructured information (text documents) http://t.co/IYO5FGCYDs @StanfordMed #bigdatamed
Deepdive https://twitter.com/abresler/status/601468927437189120 https://twitter.com/hazyresearch/status/602578569768775681
@nicolastorzec Apple acquires Lattice Data: statistical knowledge base construction framework born out of Stanford's DeepDive group
https://techcrunch.com/2017/05/13/apple-acquires-ai-company-lattice-data-a-specialist-in-unstructured-dark-data/
@HazyResearch Retweeted Benjamin Good We are too! Related ML stuff http://bit.ly/1qKpwKT and @ajratner et al's DDlite on github http://bit.ly/1rWl78u .
http://arxiv.org/abs/1605.07723Data Programming: Creating Large Training Sets, Quickly https://github.com/HazyResearch/ddlite
Bob DuCharme @bobdc · Interesting notes from U Bologna's @essepuntato on "Research Articles in Simplified HTML" format, which includes RDF https://lists.w3.org/Archives/Public/semantic-web/2015May/0126.html …
"Spark Gets New Machine Learning Framework: KeystoneML" http://prsm.tc/7pc6mM https://twitter.com/hntweets/status/604796940140707840
Wes McKinney @wesmckinn Slides from #ODSC, "DataFrames: The Extended Cut" http://www.slideshare.net/wesm/dataframes-the-extended-cut … #pydata #rstats
Databricks @databricks .@Databricks Launches MOOC: Data Science on @ApacheSpark http://dbricks.co/1Rw6rVj
AMPLab @amplab AMPBlab: Anthony: BerkeleyX Data Science on Apache Spark MOOC starts today http://goo.gl/gnqZAI
lots of conf update/likes in past week or so. see my twitter likes for papers and posters.
http://www.ancad.ro/2015/06/11/trip-report-eswc-2015/
http://rhiaro.co.uk/2015/06/eswc2015
http://www.slideshare.net/ErikMannens1/eswc-2015-eu-networking-session
http://2015.eswc-conferences.org/program/mom
http://data.semanticweb.org/conference/eswc/2015/html
https://www.w3.org/community/rsp/rsp-workshop-2015/#prog
m bobak retweeted Ontology Summit @ontologysummit Jun 4
K. Janowicz "Assist domain experts in becoming knowl engrs by developing reusable patterns" #ontologysummit #IoT
data-driven workflows done w/fwd-chainer(eg. lisa.sf.net)&any distrib pkg as needed; have ability to interop w/standards ;look@re semweb-sci links
m bobak retweeted Adrian Paschke @AdrianPaschke 7h7 hours ago
#Semantic #BPM presentation at #OMGBerlin http://www.slideshare.net/swadpasc/semanticallyenabled-business-process-management … #BPMN #BPMNExecution #csw15 #semantic #lod #LinkedData #owl #rif #cep #bpel
m bobak retweeted Marty Loughlin @mloughlin Jun 8 .@edmcouncil releases its first formal ontology standard #FIBO #semantic
http://www.automatedtrader.net/news/at/153893/enterprise-data-management-council-releases-its-first-formal--ontology-standard
…
Semantics of Business Vocabulary and Business Rules (SBVR) file:///home/bobak/dwn/new/formal-15-05-07.pdf
CitizenScience @CitizenScience_ Roll your own citizen science project http://wp.me/p4bHOm-1ap
http://www.citizensciencecenter.com/scientific-progress-goes-boinc/
https://boinc.berkeley.edu/trac/wiki/AppIntro
http://palm.mindmodeling.org/wiki/index.php/BOINC_Lisp_Interfaces
http://palm.mindmodeling.org/wiki/index.php?title=ACT-R_BOINC_Process_(Client)&oldid=360
Russ Poldrack @russpoldrack Carl Sagan's Baloney Detection Kit http://www.brainpickings.org/2014/01/03/baloney-detection-kit-carl-sagan/ … via @ajshackman
m bobak retweeted Bill Roberts @billroberts Jun 19 report of the Eurostat RDF data cube workshop https://joinup.ec.europa.eu/node/143434 including several @OpenCubeProject presentations. (thx @p_w)
some more individual @smiysmiysmiy Jun 12 #NLP query to #SPARQL query via #quepy on #dbpedia http://bit.ly/1TfYndh #graphsearch #semanticweb #linkeddata via @machinalis
m bobak retweeted ENVRIplus @ENVRIplus Attending @escience conference? Join the WS on Interoperable infrastructures for interdisciplinary #bigdata... http://fb.me/3J6lnZqT5
IEEE e-Science 2015 @escience Sep 4 Just on time for the weekend (in Europe, at least): most of the @escience 2015 presentations available: http://escience2015.mnm-team.org/?page_id=391
Kirk Borne @KirkDBorne Jul 5 Maryland, USA Turing Award Winner Mike Stonebraker discusses the @SciDB array database: http://www.odbms.org/blog/2014/04/interview-mike-stonebraker-paul-brown/ … #BigData #DataScience @odbmsorg @Paradigm4
Khalid Belhajjame @kbelhajj linking prospective and retrospective provenance of scripts http://tinyurl.com/o8447nr #tapp2015 #provenance #yesworkflow #noworkflow
Paul Groth @pgroth #Provenance for #DataMunging Environments #datacleaning #dataintegration http://www.slideshare.net/pgroth/provenance-for-data-munging-environments … @ISI_AI
Jodi Schneider @jschneider Capture #provenance of computational experiments using #PROV, Core Software Ontology, and ACT: http://linkedscience.org/wp-content/uploads/2015/04/paper2.pdf … #LISC2015 #ISWC2015
https://thinklinks.wordpress.com/2015/09/06/socal-observations/ isi 10 things
m bobak @MBstream Jul 7 San Francisco, CA AxelPolleres:slides of #data #workflow tutorial @ http://sssw.org/2015/programme/data-workflow-tutorial/ … … #SSSW2015 Tutorial on "Data workflows" at http://polleres.net/presentations/
PORTABLE WORKFLOW AND TOOL DESCRIPTIONS WITH THE CWL Michael R. Crusoe https://smallchangebio.wordpress.com/2015/07/11/bosc2015day1b/
Michael providing an overview of the Common Workflow Language, which is a great standard developed out of Codefest 2014 and the BOSC community. It provides a way to define workflows and tools in a re-usable and interoperable way. Looked at many existing standards and approaches. Giving a showout to Worflow4Ever which was an awesome standard to build off.
https://github.com/common-workflow-language/common-workflow-language http://www.wf4ever-project.org/
https://github.com/common-workflow-language/common-workflow-language/blob/master/reference/cwltool/cwlrdf.py
@NITRDgov Mar 12 Presentation by Michael R. Crusoe, @biocrusoe, at MAGIC monthly meeting on 03/07/2018: "Common Workflow Language". https://www.nitrd.gov/nitrdgroups/images/a/a0/Common_Workflow_Language.pdf …
@victoriastodden Feb 16 a list of workflow systems - really nice!
https://github.com/common-workflow-language/common-workflow-language/wiki/Existing-Workflow-systems
looked over several, incl.wings/yesworkflow (a few in py) &vatlab/SoS _want multi-lang &prov/semantics
better than common-workflow-lang is probably using linked-data: m bobak Retweeted
Daniel Garijo @dgarijov Slides of my PhD presentation: http://www.slideshare.net/dgarijo/phd-thesis-mining-abstractions-in-scientific-workflows …. All the resources are in @figshare through a Research Object https://w3id.org/dgarijo/ro/mining-abstractions-in-scientific-wfs …
http://www.cuneiform-lang.org/ https://github.com/joergen7/cuneiform Distributed functional programming with foreign language interfacing.
want dataframe2datacube, like: http://www.slideshare.net/stephanhoyer/xray-nd-labeled-arrays-and-datasets-in-python but w/datacube semantics
https://twitter.com/search?q=python%20sdmx .. https://gsocsemantic.wordpress.com/2013/06/12/data-frames-and-data-cubes/ 2013/06/20/frame-to-cube/
@csarven Replying to @danbri @cygri and 2 others
FWIW: Not tabular but https://github.com/csarven/linked-sdmx … does XML to RDF/XML. It was designed to take SDMX (meta)data from statistical agency APIs and transform. The agencies' endpoints, eg .Stat software tends to support various formats; including tabular. Result: http://270a.info/
Tim @NovasTaylor Playing with #d3js hive plots to avoid the network graph "hairball" for multi-dimensional #RDF data cubes. #LOD
@dbworld_ http://ift.tt/1Pfe1Tm Modeling and Querying Data Cubes on the Semantic Web. (arXiv:1512.06080v1 [cs.DB]) #databases
@linkedktk Sep 27 RDF Data Cube extensions for spatio-temporal components, will have to check that out for current @zazukocom projects https://w3c.github.io/sdw/qb4st/
@dbworld_ Sep 28 http://ift.tt/2hB7RXf A Simple and Efficient MapReduce Algorithm for Data Cube Materialization. (arXiv:1709.10072v1 [cs.DB]) #databases
Silvia Giannini @silviaggia_ Jul 11 Materializing the Web of Linked Data https://lnkd.in/dsW3fky
Mike Conover @vagabondjack Paging Dr. Taylor - new research from Google. http://googleresearch.blogspot.com/2014/12/automatically-making-sense-of-data.html?m=1 …
http://googleresearch.blogspot.com/2014/12/automatically-making-sense-of-data.html?m=1 http://www.automaticstatistician.com/
Lon Riesberg @lonriesberg Learning to learn, or the advent of augmented data scientists by simon.benhamou http://datalxr.com/1RrnIyz #datascience
@HNTweets AllegroGraph 5.1 N-dimensional Geospatial: http://franz.com/agraph/support/documentation/current/geospatial-nd.html … Comments: https://news.ycombinator.com/item?id=9903404
Franz Inc. @Franzinc Gruff v5.9 Now Available. New layouts for data exploration. http://franz.com/agraph/gruff/ #nosql #RDF #graphdatabase
https://www.youtube.com/watch?v=4tQb9W5es40&feature=em-subs_digest A Time Machine for Your Graph ;Gruff
I'd like to play w/this, the N-dim&more; Stepping back into it a bit, very complete, but could do w/both a slightly different interface
layout&viz ability(incl some carrot2 like viz, &maybe much more); maybe more goal-based guides/help &more if I had time2look at.
@Franzinc Bay Area Lisp/Scheme Meetup Video - Semantic Graph Databases at Franz http://buff.ly/1QrjwBg
Franz Inc. Retweeted Einstein Coll of Med #AllegroGraph #nosql #datascience http://buff.ly/1RjIkLy Franz Inc. added,
Einstein Coll of Med @EinsteinMed
Montefiore and Einstein tapped by The White House for its #precisionmedicine initiative http://bit.ly/1WLGaE7
@Franzinc Data with Relationships Yields Insights Before Analytics http://data-informed.com/data-with-relationships-yields-insights-before-analytics #AllegroGraph #GraphDatabase #RDF @Data_Informed
#Cognitive Computing is Turning Precision Medicine into a Reality - buff.ly/1Va6fyw #AllegroGraph #Healthcare #NoSQL #data ;-lake
A Web-based Text Mining Workbench http://argo.nactem.ac.uk/ workbench for building and running text-analysis solutions .....UIMA Support
@MechatronixNews Oct 30 All’s well that ROS well: Robot Operating System taking over the world https://roboticsandautomationnews.com/2016/10/30/alls-well-that-ros-well-robot-operating-system-taking-over-the-world/8369/ …
nlp/etc: found lisp bridge from ROS(robot env)to UIMA nlp env; worth a try:
https://github.com/cram-code/cram_bridge/blob/master/cram_uima/src/uima.lisp cram_bridge/cram_uima src/uima.lisp http://ias.in.tum.de/research/cram
https://github.com/cram-code/cram_demo/blob/master/cram_pr2_fccl_demo/src/uima.lisp http://wiki.ros.org/cram_core "" events/june2012workshopinternal/topics
also lisp to GATE nlp: informatics.mayo.edu/sharp/images/1/1c/LATE.ppt
Vsevolod @vseloved today I had a lecture on the basics of #NLProc http://www.slideshare.net/vseloved/crashcourse-in-natural-language-processing …; http://vseloved.github.io/ http://github.com/vseloved/cl-nlp
Bahar Sateli retweeted SemanticSoftwareLab Check out our new GATE plugin, the LODtagger!
SemanticSoftwareLab @SemSoft First release of LODtagger, an #NLProc component for running #DBpediaSpotlight within GATE: http://www.semanticsoftware.info/lodtagger @GateAcUk #SemanticWeb
several other/re https://gate.ac.uk/projects.html to look at as well.
http://discoveryhub.co/ https://hal.inria.fr/tel-01130622v1 ;mentioned in the FUN class
GATE (gate.ac.uk) Retweeted Txt Mining Solutions @Txt_Mining TMS Reviews @GateAcUk New "Learning Framework"
- Text Mining Solutions http://www.textminingsolutions.co.uk/1/post/2016/04/tms-reviews-gates-new-learning-framework.html …
https://github.com/GateNLP/gateplugin-LearningFramework/releases/tag/V2_1
Will still try LODtagger some more, but https://github.com/mit-nlp/MITIE compiled&ran quickly&as also worth a try.
@TextMining_r The Rise of Conversational Interfaces and NLP: https://www.reddit.com/r/textdatamining/comments/3xu3ok/the_rise_of_conversational_interfaces_and_nlp/ … #NLProc
http://blog.dennybritz.com/2015/11/17/talking-to-machines-the-rise-of-conversational-interfaces-and-nlp
@TextMining_r Digital Research Tools (DiRT): web scraping, music OCR, statistical analysis packages, mindmapping software & more: [ http://dirtdirectory.org/categories/text-mining ] https://www.reddit.com/r/textdatamining/comments/3f3ogh/digital_research_tools_dirt_web_scraping_music/ …
sem-NER: Ricardo Usbeck @Ricardo_Usbeck My short introduction to #GERBIL at #semdev2015 at #eswc2015 http://videolectures.net/eswc2015_usbeck_annotation_benchmarks/ … /w @NgongaAxel @MichaDerStudent @akswgroup
http://project-hobbit.eu/the-roots-of-hobbit/ GERBIL facilitates benchmarking of named entity recognition (NER), named entity disambiguation (NED) &..
Nicolas Torzec @nicolastorzec
Fast entity linking from Yahoo Research: "Open Source Toolkit for Lightweight Multilingual Entity Linking". https://yahooresearch.tumblr.com/post/154110423951/presenting-an-open-source-toolkit-for-lightweight …
but I can't get to look at the hash data to run it w/o a uni email address;(
so the code is open, but the data to run it is not open to the full public
http://www-nlp.stanford.edu/software/sempre/ toolkit for training semantic parsers, which map natural language utterances to denotations(answers) via intermediate logical forms
#NLP to #SPARQL convertor Quepy bit.ly/1TfYndh Squall bit.ly/1dN094v NL-SPARQL bit.ly/1HgHLvA ;(controlled)Natural-Language 2qry, dialog challenge
@eXascaleInfolab #sssw2015 slides of the sense making tutorial are here: http://bit.ly/1RnBg1P ! @NgongaAxel @sssw2015
@NetworkFact The igraph network library comes in C, R, Python, and Ruby versions. http://igraph.org/
Paul Groth @pgroth SciGraph - Represent ontologies and ontology-encoded knowledge in a Neo4j graph #dsos - looks pretty cool https://github.com/SciGraph/SciGraph/blob/master/README.md … ;+ cl-neo4j
Might play w/some email w/KM: http://notional.no-ip.org/em.km
might find excuse to try ;https://github.com/fons/cl-mongo ;https://common-lisp.net/project/cl-graph/user-guide.html together
m bobak @MBstream 6h6 hours ago San Francisco, CA View translation
#ruleml tutorial http://2015.ruleml.org/tutorials.html slides:
http://www.csw.inf.fu-berlin.de/rw2015/files/slides/PSOAObjRelDataRules-talk-RW2015.pdf …
http://www.csw.inf.fu-berlin.de/rw2015/files/slides/grosof-talk-main-v13.pdf …
http://www.csw.inf.fu-berlin.de/rw2015/files/slides/Athan-Governatori-Palmirani-Paschke-Wyner-slides.pdf …
http://download.springer.com/static/pdf/979/bbm%253A978-3-319-21768-0%252F1.pdf?originUrl=http%3A%2F%2Flink.springer.com%2Fbook%2Fbbm%3A978-3-319-21768-0%2F1&token2=exp=1438544078~acl=%2Fstatic%2Fpdf%2F979%2Fbbm%25253A978-3-319-21768-0%25252F1.pdf%3ForiginUrl%3Dhttp%253A%252F%252Flink.springer.com%252Fbook%252Fbbm%253A978-3-319-21768-0%252F1*~hmac=dc682aa38c33d3ff51b984b9ca5f9d83ae0a27fbca965ed85d9dcaa59fd23742 …
recent re-use of: old slides:' http://mike.bobak.googlepages.com/intro2KE.pdf &I could also draw from: http://bit.ly/TP8gfz '
Kno.e.sis@WrightStU @knoesis We are doing a broad variety of (usually semantics-enhanced) work involving sensors/IoT (often for personalized... http://fb.me/3pcfyrIaW
Payam Barnaghi @PBarnaghi The Internet of Things and Data Analytics https://lnkd.in/e6E4h6S ,tools:KAT,sense2web,.SSNv.. ,ont: IoTLite,SAO,.. ; http://www.surrey.ac.uk/ics/
Semantic Tech & Biz @SemanticWeb Aug 6 Win a free pass to #SmartDataWeek. RT by 08/07 for a chance to win! #ai #semanticweb http://ow.ly/QzXc2 ;going 18-20th
many good things 1st day,... look into: http://tw.rpi.edu/web/project/SemNExT ;; https://code.google.com/p/semanticscience/ -> https://github.com/micheldumontier/semanticscience
http://smartdata2015.dataversity.net/sessionPop.cfm?confid=91&proposalid=7710 The PNNL Streaming HYpothesis REasoning (SHYRE) use case ;suggested: c-sparql & instans:
www.cs.hut.fi/~mjrinne/sw/instans/INSTANS-Simulations-March2012.pdf https://github.com/aaltodsg/instans http://cse.aalto.fi/en/research/groups/distributed_systems/software/instans ceur-ws.org/Vol-914/paper_22.pdf
last day http://smartdata2015.dataversity.net/agenda.cfm?confid=91&scheduleDay=08/20/15 AM2: Natural Logic(jfsowa.com/talks/ natlog.pdf), PM2: Cognitive NLP(Adam Pease, IPsoft, ex:teknowlede/SUMO)
http://www.adampease.org/OP/ https://en.wikipedia.org/wiki/Adam_Pease http://www.aclweb.org/anthology/W14-4718 ceur-ws.org/Vol-71/Pease.pdf page.mi.fu-berlin.de/cbenzmueller/papers/2010-ECAI-ARCOE-16-8.pdf
both touch on controlled natural-language (interop), re:km/etc I've looked at ACE before: http://attempto.ifi.uzh.ch/site/resources/ http://www.cs.rpi.edu/~tayloj/CL-ACE/ will have to look again
@StructStories Think manually-entered structured knowledge is impractical and unscalable? Learn about controlled natural language..
https://steemit.com/tauchain/@dana-edwards/using-controlled-english-as-a-knowledge-representation-language
Daniele Dell'Aglio @dandellaglio The slides of the #RDFStreamProcessing tutorial at @iswc2016 are available online! Find them at http://streamreasoning.org/events/rsp2016 ! #RSP #ISWC2016
Jean-Paul Calbimonte @jpcik Oct 16 #rsp tutorial: slides of RSP implementation section at #iswc2016 http://www.slideshare.net/jpcik/rdf-stream-processing-tutorial-rsp-implementations
http://www.slideshare.net/rjw/schemaorg-extending-benefits from http://smartdata2015.dataversity.net/sessionPop.cfm?confid=91&proposalid=7656