-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmeetups_array.json
1777 lines (1777 loc) · 85.4 KB
/
meetups_array.json
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
[
{
"created": 1421868476000,
"id": "219987802",
"name": "Kickoff Meetup!",
"date_in_series_pattern": false,
"status": "past",
"time": 1423179000000,
"local_date": "2015-02-05",
"local_time": "18:30",
"updated": 1427153189000,
"utc_offset": -18000000,
"waitlist_count": 0,
"yes_rsvp_count": 38,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/219987802/",
"description": "<p>For the inaugural get together, it's a good chance for everyone to meet, mingle, and share, so the agenda is intentionally being kept simple and informal. Familiarity will give future meetings more richness!</p> <p>A big thanks to local startup Cirruspath (cirrusinsight.com) for their generosity in providing space to host the first meeting.</p> <p>The preliminary agenda:</p> <p>• Snacks and drinks while everyone mingles and settles-in.</p> <p>• Short intro from the organizers to share vision for group.</p> <p>• Quick share from attendees about who they are, what they do, etc.</p> <p>• Discussion of, “to us, what is data science?” to help set the tone for future meetings.</p> <p>• All attendee chat about what the group wants to see at future meet-ups, e.g. keynote or lightning talks, free workshops, seminars, business highlights, MOOC study groups, a Kaggle team, wins/losses expose... bring your ideas.</p> <p>• Hammer out long-term logistics to maximize engagement: venue(s), best days/times for meetings, sponsorships.</p> <p>• Head to the Casual Pint for some brew.</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1426273032000,
"duration": 3600000,
"id": "221131825",
"name": "Elephant Beekeeper: Intro to using Hive on Hadoop",
"date_in_series_pattern": false,
"status": "past",
"time": 1426802400000,
"local_date": "2015-03-19",
"local_time": "18:00",
"updated": 1427153210000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 18,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/221131825/",
"manual_attendance_count": 18,
"description": "<p>This will be an introductory session on data warehousing using Apache Hive. We'll first provide a very brief introduction of Apache Hadoop HDFS, YARN, MapReduce and the Hadoop eco system. Then we'll provide a more detailed introduction to Apache Hive together with several hands-on exercises. You are welcome to follow the hand-on exercises. We'll be using the Hortonworks HDP 2.2 sandbox virtual machine for the hands-on exercises. In order to follow the hands on exercises:</p> <p>• Please download and install the appropriate VM image from: <a href=\"http://hortonworks.com/products/hortonworks-sandbox/#install\"><a href=\"http://hortonworks.com/products/hortonworks-sandbox/#install\" class=\"linkified\">http://hortonworks.com/products/hortonworks-sandbox/#install</a></a></p> <p>• Download the data file at: <a href=\"https://github.com/thilg/hcb-v2/blob/master/chapter6/chapter6-bookcrossing-data.tar.gz\"><a href=\"https://github.com/thilg/hcb-v2/blob/master/chapter6/chapter6-bookcrossing-data.tar.gz\" class=\"linkified\">https://github.com/thilg/hcb-v2/blob/master/chapter6/chapter6-bookcrossing-data.tar.gz</a></a></p> <p>• Alternatively, you can also clone this repo: <a href=\"https://github.com/thilg/hcb-v2\"><a href=\"https://github.com/thilg/hcb-v2\" class=\"linkified\">https://github.com/thilg/hcb-v2</a></a> git repository.</p> <p>If you're an utter novice to Hadoop and Hive, don't worry... still come! You can take a look at these tutorials from Hortonworks that give a comprehensive overview and exercises on what Hadoop is and how it's useful in terms of Hive: </p> <p>• <a href=\"http://goo.gl/14OAat\" class=\"linkified\">http://goo.gl/14OAat</a></p> <p>• <a href=\"http://goo.gl/7iVtRw\" class=\"linkified\">http://goo.gl/7iVtRw</a></p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1426807546000,
"duration": 5400000,
"id": "221269406",
"name": "Local Startup Q&A",
"date_in_series_pattern": false,
"status": "past",
"time": 1428616800000,
"local_date": "2015-04-09",
"local_time": "18:00",
"updated": 1428691349000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 31,
"venue": {
"id": 23657395,
"name": "Knoxville Entrepreneur Center",
"lat": 35.96517562866211,
"lon": -83.91983795166016,
"repinned": false,
"address_1": "17 Market Square SW #101",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/221269406/",
"manual_attendance_count": 31,
"description": "<p>We'll have an audience with established and startup data-centric local companies and hear their stories about getting a company off the ground, fundraising, lessons learned, wins/losses, etc.</p> <p><b><i>Bring your questions!</i></b> This is an audience focused event, and while the organizers will have canned questions, we want attendees to have this as a chance to reap knowledge from the presenters. Confirmed presenters are:</p> <p>• Chris Groer, Director of R&D at <a href=\"http://www.linkanalytics.com/\">KPMG (formerly Link Analytics)</a></p> <p>• Mik Bertolli, <a href=\"http://www.scibyl.com/\">Scibyl</a></p> <p>• Haley Hubbard, Analytics Specialist at <a href=\"http://vendorregistry.com/\">Vendor Registry</a></p> <p>This event is being graciously hosted by the Knoxville Entrepreneur Center, a business accelerator built to serve as the front door for entrepreneurs in East Tennessee. They will be providing pizza and beer! Thank you, KEC for hosting us.</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1430796648000,
"duration": 3600000,
"id": "222313603",
"name": "Machine Learning Workshop",
"date_in_series_pattern": false,
"status": "past",
"time": 1432245600000,
"local_date": "2015-05-21",
"local_time": "18:00",
"updated": 1432259665000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 29,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/222313603/",
"manual_attendance_count": 28,
"description": "<p>Mik Bertolli from <a href=\"http://www.scibyl.com\">Scibyl</a> will be guiding attendees through a hands-on tutorial in machine learning (mostly Python). Mik will talk about feature extraction and regression, with some demos in neural networks and evolutionary algorithms. If you'd like to follow along, bring your laptop -- there's power and wifi. If you'd rather just listen and ask questions, we encourage that as well! </p> ",
"how_to_find_us": "Ground floor, first office on the left after you enter building.",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1433275766000,
"id": "222968447",
"name": "Let's Hangout -- social get together",
"date_in_series_pattern": false,
"status": "past",
"time": 1434668400000,
"local_date": "2015-06-18",
"local_time": "19:00",
"updated": 1438350956000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 13,
"venue": {
"id": 21606182,
"name": "Carolina Ale House",
"lat": 35.912559509277344,
"lon": -84.0829086303711,
"repinned": false,
"address_1": "9045 Kingston Pike, 37923",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/222968447/",
"manual_attendance_count": 13,
"description": "<p>This is just a general social get together for the DSci Meetup. No talks, workshops, or format -- simply come by and hangout to meet other folks in the group. Carolina Ale House has food, drinks, and is a blend of bar/restaurant. We're contacting Carolina Ale House to see if they can get us mostly onto the patio (hopefully with awesome weather) so people can span several tables and the bar area if need be.</p> ",
"how_to_find_us": "Look for the guy in a green A's baseball cap -- that's Ken.",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1437610180000,
"id": "224107607",
"name": "Blair Christian from PYA Analytics",
"date_in_series_pattern": false,
"status": "past",
"time": 1438295400000,
"local_date": "2015-07-30",
"local_time": "18:30",
"updated": 1438350928000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 27,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/224107607/",
"description": "<p>Blair Christian from PYA Analytics will be giving a presentation on his work and experience being a data scientist for a local startup. Blair has a PhD in statistics and has taught business analytics courses at UTK. Prior to PYA Analytics, Blair worked for the SAS Institute in Cary, NC. </p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1440599795000,
"id": "224899110",
"name": "Three short presentations from Ken, Alex, and James",
"date_in_series_pattern": false,
"status": "past",
"time": 1442529000000,
"local_date": "2015-09-17",
"local_time": "18:30",
"updated": 1442575563000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 38,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/224899110/",
"description": "<p>For our next Meetup, we will have three short presentations (~15 mins each). <a href=\"https://youtu.be/GoB4I7k3JPo\">Click here for the live stream</a>.</p> <p><b>Ken Cavagnolo from KPMG:<br/></b>Internet of Things (IoT) devices are earning a rep for being Vaporware. I'll start a conversation on shortcomings of IoT devices and ask for input on how those issues could be worked around.</p> <p><b>Alex Pawlowski from ORNL/NTRC:<br/></b>How can active safety reduce vehicle emissions? A focus on data concepts.</p> <p><b>James Horey from Cirruspath:<br/></b>Analyzing sales data for fun & money</p> <p>Don't forget to join us on Slack at <a href=\"http://www.knoxscience.com/\">knoxscience.com</a>! </p> ",
"how_to_find_us": "We're across Kingston from Fort Sanders West in a 3-story office building.",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1444068786000,
"id": "225849817",
"name": "Two presentations from Cristian (Cirruspath) and Matt Sieger (ORNL)",
"date_in_series_pattern": false,
"status": "past",
"time": 1445553000000,
"local_date": "2015-10-22",
"local_time": "18:30",
"updated": 1447871351000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 33,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/225849817/",
"manual_attendance_count": 33,
"description": "<p>This month we're having presentations from Cristian Capdevila from Cirruspath and Matt Sieger from ORNL. Cristian will talk about modern natural language processing techniques (LDA, word2vec), and Matt will talk about ORNL software for simulating nuclear reactors (www.casl.gov). As always, we'll have time to mingle before and after the presentation. Remember if you haven't joined KnoxScience.com yet, please do so!</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1445704939000,
"id": "226279816",
"name": "AWS presentation from Elizabeth & genomics research from Meg Staton (UTK)",
"date_in_series_pattern": false,
"status": "past",
"time": 1447803000000,
"local_date": "2015-11-17",
"local_time": "18:30",
"updated": 1447871849000,
"utc_offset": -18000000,
"waitlist_count": 0,
"yes_rsvp_count": 35,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/226279816/",
"manual_attendance_count": 35,
"description": "<p>For our November meetup, we'll have two exciting speakers. Elizabeth Turpin from Scripps will talk to us about her experience using the Amazon Web Services data pipeline tools, and Prof. Meg Staton will talk about her research in genomics (hardwoodgenomics.org). </p> <p>Please note that we are meeting on Tuesday this time! As usual we'll start socializing around 6:30 with the first presentation starting around 7:00. Also, if you haven't joined our Slack team yet, head over to knoxscience.com and sign up! We'll share announcements & details there. </p> ",
"how_to_find_us": "Across Kingston from Ft. Sanders West.",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1448892794000,
"id": "227110646",
"name": "Social month!",
"date_in_series_pattern": false,
"status": "past",
"time": 1449790200000,
"local_date": "2015-12-10",
"local_time": "18:30",
"updated": 1449801851000,
"utc_offset": -18000000,
"waitlist_count": 0,
"yes_rsvp_count": 15,
"venue": {
"id": 21606182,
"name": "Carolina Ale House",
"lat": 35.912559509277344,
"lon": -84.0829086303711,
"repinned": false,
"address_1": "9045 Kingston Pike, 37923",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/227110646/",
"description": "<p>December is social month! Join us for beer and casual conversation starting at 6:30. If you haven't attended before, this is a great chance to get to know folks. Also if you haven't joined yet, join us on Slack at KnoxScience.com!</p> <p>James & Ken</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1449611993000,
"id": "227300669",
"name": "Lightning Talks: Data Science in Business; Scheduling Optimization",
"date_in_series_pattern": false,
"status": "past",
"time": 1453419000000,
"local_date": "2016-01-21",
"local_time": "18:30",
"updated": 1453435428000,
"utc_offset": -18000000,
"waitlist_count": 0,
"yes_rsvp_count": 31,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/227300669/",
"description": "<p>Darren Seay from Pilot Flying J:<br/>Darren will share his perspectives on leading PFJ's movement into being a data science-focused company and the intersection with business. He'll share a of their few wins in that area.</p> <p>Chris Groer from KPMG:<br/>Scheduling problems can be very simple to state and even solve by hand. However, there is often an incredibly difficult combinatoric optimization lurking in the background. This talk will focus on some of our work in scheduling college and professional leagues.</p> <p>As always, we'll have time to mingle before and after the presentation. Remember if you haven't joined KnoxScience.com yet, please do so!</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1455298041000,
"id": "228807246",
"name": "Survey of Data Science tools by Bob Muenchen and short presentation from Alex",
"date_in_series_pattern": false,
"status": "past",
"time": 1455838200000,
"local_date": "2016-02-18",
"local_time": "18:30",
"updated": 1455851153000,
"utc_offset": -18000000,
"waitlist_count": 0,
"yes_rsvp_count": 27,
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/228807246/",
"description": "<p>All, sorry for the short notice. This month we're going to have an awesome presentation from Bob discussing the latest trends in data science tools. If you've ever wondered what the cool kids are using, then you won't want to miss this talk. Afterwards, Alex will give a presentation about a neat application written in R Shiny.</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1460119727000,
"id": "230223064",
"name": "KnoxDevs Tech Networking",
"date_in_series_pattern": false,
"status": "past",
"time": 1461884400000,
"local_date": "2016-04-28",
"local_time": "19:00",
"updated": 1461904480000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 20,
"venue": {
"id": 19295612,
"name": "Scruffy City Hall",
"lat": 35.96546173095703,
"lon": -83.91983032226562,
"repinned": false,
"address_1": "32 Market Sq",
"city": "Knoxville",
"country": "US",
"localized_country_name": "USA"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/230223064/",
"description": "<p>We're merging this meetup session with the folks from KnoxDevs to cross-pollinate and help our communities expand.</p> <p><b>**Please register attendance at Eventbrite**<br/><a href=\"https://www.eventbrite.com/e/knoxdevs-quarterly-meetup-tickets-24208666774\" class=\"linkified\">https://www.eventbrite.com/e/knoxdevs-quarterly-meetup-tickets-24208666774</a></b></p> <p>\"We are pleased to invite you to the Scruffy City Hall on April 28th for the next KnoxDevs quarterly meetup! Join us for free beer and appetizers from Premier Staffing Partners, CodeStock, and CodeTank Labs. This is a technology-neutral meeting intended to bring together Knoxville area software developers of all skill levels under one roof to network and learn. Whether you’re a student or a senior specialist, come get inspired, build some new relationships, and help make an impact in the local software development community. We've also got door prizes to give away!\"</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1463574695000,
"id": "231215111",
"name": "Let's get together for a social!",
"date_in_series_pattern": false,
"status": "past",
"time": 1464301800000,
"local_date": "2016-05-26",
"local_time": "18:30",
"updated": 1464314581000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 15,
"venue": {
"id": 21606182,
"name": "Carolina Ale House",
"lat": 35.912559509277344,
"lon": -84.0829086303711,
"repinned": false,
"address_1": "9045 Kingston Pike, 37923",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/231215111/",
"description": "<p>Hey there.... it's been a little bit since we've all met up, let's kick it back together over a beer or two for some casual conversation and beautiful weather starting at 6:30! We'll get a table at Carolina Ale House, so please RSVP so we can good head count! We plan on having a discussion on future directions of the meetup and topics people would like to hear at a future meetup!</p> <p>If you haven't attended before, this is a great chance to get to know folks in the Knoxville area related to data science. Also if you haven't joined yet, join us on Slack at KnoxScience.com!</p> <p>Alex, James, & Ken</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1474029796000,
"duration": 7200000,
"id": "234173245",
"name": "Attend the KnoxDevs Quarterly Meetup",
"date_in_series_pattern": false,
"status": "past",
"time": 1474410600000,
"local_date": "2016-09-20",
"local_time": "18:30",
"updated": 1474420097000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 10,
"venue": {
"id": 12878342,
"name": "Relix Variety Theatre",
"lat": 35.98196792602539,
"lon": -83.92953491210938,
"repinned": false,
"address_1": "1208 N. Central Street ",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "37917",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/234173245/",
"description": "<p>Hey all! Plans are underway to schedule a meetup for October, apologies for the long, long delay. But in the meantime, we invite you to come out to the KnoxDevs Quarterly next Tuesday to hear from Paul Singh, a nationally recognized entrepreneur and investor who will be stopping by on his National Tech Tour and speaking to us about what we can do to make Knoxville a successful tech city. If you are interested in attending, please rsvp at the link below, which will enter you into a raffle at the Quarterly.</p> <p>Hope to see you there!</p> <p><a href=\"https://www.meetup.com/KnoxDevs/events/233460707/\"><a href=\"https://www.meetup.com/KnoxDevs/events/233460707/\" class=\"linkified\">https://www.meetup.com/KnoxDevs/events/233460707/</a></a></p> <p>PS If you are interested in giving a talk at a future Data Science Meetup, message me or <a href=\"mailto:[email protected]\">email me</a>.</p> <p>Thanks!</p> <p>Alex Pawlowski</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1474668484000,
"duration": 5400000,
"id": "234359249",
"name": "DSci is back! James with ReviewBox and Krishna talking about proton collisions",
"date_in_series_pattern": false,
"status": "past",
"time": 1477002600000,
"local_date": "2016-10-20",
"local_time": "18:30",
"updated": 1477010192000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 24,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/234359249/",
"description": "<p>After much, much delay, let's get back to meeting about data. </p> <p>James Horey will be talking about what he is doing now with Reviewbox and how his platform helps vendors monitor their products on Amazon and other major retail sites as well other features of his biz.</p> <p>Krishna will be talking about how the CMS experiment at the Large Hadron Collider figures out the size of the proton beam by analyzing large amounts of data taken by the detectors. He'll also go over the algorithm used by the pixel detector to count the number of proton-proton collision events</p> <p>Drinks afterwards at Crafty Bastard (across the street) for more conversation if there is interest.</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1488402948000,
"duration": 5400000,
"id": "238093062",
"name": "Open Night: 3 + 1",
"date_in_series_pattern": false,
"status": "past",
"time": 1490310000000,
"local_date": "2017-03-23",
"local_time": "19:00",
"updated": 1490317840000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 21,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/238093062/",
"description": "<p>It's been far too long without a scheduled meetup, let's meet. </p> <p>Our schedule so far this year is open to speakers and while I am looking for some who are interested in sharing what they work on, I think it would be helpful to kick-start our year with talking about what interests you in the realm of data science. </p> <p>So, come prepared with three things that you would like to learn this year and one thing that you've found helpful that you've picked up last year. If you have something to cool to share, this is that the time to do it. Whether you're a business analyst, machine learner, or just enjoy a good dataviz, I hope that others will share something that interests you. There are also a couple of sponsor activities that we could be interested in, so I'll share those as well.</p> ",
"how_to_find_us": "Across the street from the Crafty Bastard",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1492006841000,
"duration": 5400000,
"id": "239156565",
"name": "Building a Data Workflow",
"date_in_series_pattern": false,
"status": "past",
"time": 1492727400000,
"local_date": "2017-04-20",
"local_time": "18:30",
"updated": 1492783743000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 17,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/239156565/",
"description": "<p>Last month, a common theme among the room pertained to questions about managing a workflow when it comes to dealing with data - whether for science, for business intelligence, or for app development. KnoxData organizer, Alex Pawlowski, will talk a little bit about how he manages his workflow, inspired in large part by great resources like Hadley Wickham's R for Data Science book, and several Medium articles by data science teams at AirBnb + Uber. While the source of inspiration starts in R, good data organization, like this group, is highly language agnostic. He'll include some examples from industry that incorporate multiple languages as part of their workflows, using specific tools to manage their needs best. As this is purely one perspective, you are encouraged to talk about some of your experiences as well, and hopefully include some tools that are important for you.</p> <p>See you there! </p> <p>If there's sufficient interest, we'll walk across to finish conversations at Crafty Bastard 🍺</p> ",
"how_to_find_us": "Across the street from Crafty Bastard",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1494507302000,
"duration": 5400000,
"id": "239903306",
"name": "Inside the Neural Net with the Keras library for Python",
"date_in_series_pattern": false,
"status": "past",
"time": 1497565800000,
"local_date": "2017-06-15",
"local_time": "18:30",
"updated": 1497574700000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 31,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/239903306/",
"description": "<p>Keras is a high-level Python library for building and training deep neural networks with abstractions that make it useful for beginners and experts alike. Alex Klibisz will cover some fundamental neural network concepts, show how to build a neural network for image classification in Keras, and give some recommendations for further learning. If there’s time he'll also cover some of the more advanced features that he has found useful in his own research.</p> ",
"how_to_find_us": "Across the street from Crafty Bastard",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1494944236000,
"duration": 7200000,
"id": "240028410",
"name": "All about Olli: The Intersection of Computer Vision and 3D Printing",
"rsvp_limit": 35,
"date_in_series_pattern": false,
"status": "past",
"time": 1500589800000,
"local_date": "2017-07-20",
"local_time": "18:30",
"updated": 1500600687000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 31,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/240028410/",
"description": "<p>Billy Hughes and Charles Hill from <a href=\"https://localmotors.com/\">Local Motors</a> will join us to discuss <a href=\"https://localmotors.com/meet-olli/\">Olli</a>, a 3-D printed <a href=\"http://www.wbir.com/news/local/self-driving-shuttle-to-debut-this-fall-in-knoxville/432745083\">self-driving electric vehicle</a> designed to streamline shared transportation systems around the world. They will lead a technical presentation on the advanced computer vision and material science behind Olli.</p> ",
"how_to_find_us": "Across the street from Crafty Bastard",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1499450790000,
"duration": 6300000,
"id": "241406130",
"name": "Machine Learning for Developers: Introduction to Python's Scikit-Learn",
"date_in_series_pattern": false,
"status": "past",
"time": 1503009000000,
"local_date": "2017-08-17",
"local_time": "18:30",
"updated": 1503023157000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 41,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/241406130/",
"description": "<p>Building, training, and deploying machine learning models is no longer an arcane art reserved for PhDs and scientists. Come and learn from Jared Smith about one of the most popular machine learning libraries, Scikit-Learn, in this hands-on talk where we will explore the capabilities of Scikit-Learn through live coding. First, we will cover the fundamentals behind several major algorithms, including several types of classifiers, regression models, and clustering methods, then we will write the code to implement them, visualize the results, and even deploy a model to a web server. Jared Smith is working on a PhD in Computer Science with a focus on Internet infrastructure resiliency and privacy-preserving methods of communication, interfacing with his other work at Oak Ridge National Laboratory as a cyber security researcher.</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1501871185000,
"duration": 7200000,
"id": "242287645",
"name": "Behind the scenes of making gov data \"open\" + valuable",
"date_in_series_pattern": false,
"status": "past",
"time": 1506033000000,
"local_date": "2017-09-21",
"local_time": "18:30",
"updated": 1506043445000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 23,
"venue": {
"id": 20016412,
"name": "The Technology Cooperative",
"lat": 35.974491119384766,
"lon": -83.92304229736328,
"repinned": false,
"address_1": "13 Emory Place",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/242287645/",
"description": "<p>This month, coinciding with Innov865 week - a week long set of events highlighting Knoxville's startup + entrepreneurial scene, KnoxData is hosting a conversation about open data, and what that means for the public and the startup community in Knoxville. Two speakers from the Knoxville Metropolitan Planning Commission (MPC), Alex Zendel and Tim Kuhn, will give a technical presentation about some of the behind the scenes work in developing an inventory and access of spatial data that the MPC collects. Russ Jensen, 311 Director for the City of Knoxville, will talk a little about the City of Knoxville's recent Open Data Initiative, and shedding some light on the decisions to make in what data to provide.</p> ",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1505821678000,
"duration": 5400000,
"id": "243486935",
"name": "Attend Innov865 Data Analytics Lunch + Learn",
"date_in_series_pattern": false,
"status": "past",
"time": 1506096000000,
"local_date": "2017-09-22",
"local_time": "12:00",
"updated": 1506103162000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 7,
"venue": {
"id": 25500588,
"name": "The Mill Room at PYA",
"lat": 35.956085205078125,
"lon": -83.95210266113281,
"repinned": false,
"address_1": "2240 Sutherland Avenue",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",
"lat": 35.93000030517578,
"lon": -84.01000213623047,
"urlname": "knoxdata",
"who": "Data enthusiasts",
"localized_location": "Knoxville, TN",
"state": "TN",
"country": "us",
"region": "en_US",
"timezone": "US/Eastern"
},
"link": "https://www.meetup.com/knoxdata/events/243486935/",
"description": "<p>Support our co-founders James and Ken as they highlight a panel on doing data right. You must pre-register at <a href=\"https://www.eventbrite.com/e/innov865-panel-discussion-doing-data-right-lunch-and-learn-tickets-37210578843?aff=es2\">this Eventbrite link</a> for the event. This isn't a KnoxData event, but it highlights some of the talent in data science in Knoxville and features our two co-founders!</p> <p>Innov865 Panel Discussion: “Doing Data Right”</p> <p>PYA Analytics, Avrio Analytics, and NewsBreak Media are joining forces to sponsor a data analytics workshop during Innov865 Week. Join some of the finest “Data Analytics Unicorns” in East Tennessee, as Innov865 welcomes a panel of some of Knoxville’s leading experts and thought leaders who are best at “Doing Data Right.”</p> <p>Confirmed Panelists include:</p> <p>Guru Kora, Research Scientist, PYA Analytics</p> <p>James Horey, Founder & CEO, Reviewbox <- KnoxData Co-Founder</p> <p>Ken Cavagnolo, Principal Data Scientist, Pilot Flying J <- KnoxData Co-Founder</p> <p>Julie Ferrara, Asst. Department Head, Business Analytics & Statistics Department, UT Haslam College of Business</p> <p>The micro event, set as a lunch and learn, will be held from Noon to 1:30 p.m. Friday, September 22, in the Mill Room at Cherokee Mills, 2240 Sutherland Avenue. <a href=\"https://www.eventbrite.com/e/innov865-panel-discussion-doing-data-right-lunch-and-learn-tickets-37210578843?aff=es2\">There is no registration fee, but pre-registration is required.</a></p> <p>Join in on the lively discussion as our panelists explore the East Tennessee data analytics scene and offer their perspectives on the challenges associated with the emergence of new tools and architecture that support the demand for real-time, scalable data analytics. What is coming next in the future of data analytics? Is East Tennessee prepared for this next wave of innovation? Are we attracting and retaining the best talent that analytics can find in support of innovation?</p> <p>Hosted by:</p> <p><img src=\"https://innov865week.com/site/wp-content/uploads/2017/07/Screen-Shot-2017-07-17-at-12.57.36-PM-500x228.png\" /></p> ",
"how_to_find_us": "In Cherokee Mills Plaza, follow the Innov865 signs",
"visibility": "public",
"pro_is_email_shared": true
},
{
"created": 1508266318000,
"duration": 9000000,
"id": "244287302",
"name": "Attend the KnoxDevs Quarterly",
"date_in_series_pattern": false,
"status": "past",
"time": 1509051600000,
"local_date": "2017-10-26",
"local_time": "17:00",
"updated": 1509065151000,
"utc_offset": -14400000,
"waitlist_count": 0,
"yes_rsvp_count": 6,
"venue": {
"id": 24959881,
"name": "The Open Chord",
"lat": 35.92173385620117,
"lon": -84.06234741210938,
"repinned": false,
"address_1": "8502 Kingston Pike",
"city": "Knoxville",
"country": "us",
"localized_country_name": "USA",
"zip": "",
"state": "TN"
},
"group": {
"created": 1419436448000,
"name": "KnoxData - a PyData group",
"id": 18271914,
"join_mode": "open",