-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindeed_jobs_mp.csv
We can't make this file beautiful and searchable because it's too large.
5911 lines (5239 loc) · 645 KB
/
indeed_jobs_mp.csv
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
Title,Company,Location,Rating,Date,Salary,Description,Links,Descriptions
Jr. Data Scientist,Talentheed Inc,Remote,4.6,PostedPosted 2 days ago,"$56,951 - $119,187 a year","To apply to data sets, create unique data models and algorithms.
Examine the efficacy and precision of new data sources and data collection procedures.",https://www.indeed.com/company/Talentheed-Inc/jobs/Junior-Data-Scientist-01884c56a6d437df?fccid=c74998f9af9be394&vjs=3,"Responsibilities : -
Coordinate with different teams to implement models and monitor outcomes.
Develop processes and tools to monitor and analyze model performance and data accuracy.
Collaborate with stakeholders throughout the organization to discover ways to use corporate data to create business solutions.
Mine and analyze data from company databases to promote optimization and enhancement of product development, marketing tactics, and business strategies.
Examine the efficacy and precision of new data sources and data collection procedures.
To apply to data sets, create unique data models and algorithms.
Increase and improve customer experiences, revenue creation, ad targeting, and other company results through predictive modeling.
Benefits : -
Pre job Training with Experienced Trainers.
Assignments & Case Studies provided during training.
Mock sessions before interviews.
Multiple interview rounds with different clients.
Training completing certificates.
Job Types: Full-time, Part-time
Pay: $56,951.30 - $119,187.11 per year
Benefits:
401(k)
Dental insurance
Health insurance
Paid time off
Schedule:
4 hour shift
8 hour shift
Work Location: Remote"
Data Scientist,"Shaw Industries Group, Inc.",Remote,3.8,PostedPosted 5 days ago,NaN,Partner with data scientists across the enterprise to help support the operationalization and ongoing maintenance of enterprise data science solutions.,https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0CrvEjiI1EGEnRdQcpM6oig2JvaZXiHQsku1pqyTao9qod5Og62w5ho1fxZU1Vsi_CCuoqlnRWdQ-ueZUFVbuXNabifLIlYgkfbWRTi_SF8v9F2nD92es8XMSjxPP_JChY-aZel7WBcSQUHQk8LKhrH0kIZa0xmftP12ROH36PRG08CtfAX4bmmBMXG_OBPJrDAAHY-6ANcOheVWmwzFwN14coCKi8k2HXYKFo_iE4J_543jaOrFnO0_0j0ldmRGIzYENz5RHye39gr7AixXvw-NAu-WNsDJGKhouenzKVRPYBagW4dZYXZaxKGaXavoO_mVR-4qC9WacZzRshoS1aBEntE_nEfre3sKfXmbRcUJmaqjcrPjcLD9jziGcjoAMizSx9eFUcTQiHkj7Qp15pcGwmW7GxlaAqIEbL3iKqXCguajXO1z1qHEswD1AqcGOtTlMai1zGcX-F0wS7GmqUxYdbAcRLPQ_zCMJhhu0Syog==&xkcb=SoA0-_M3WJmDXGWbER0KbzkdCdPP&p=1&fvj=1&vjs=3,"We are looking for a data scientist to join our enterprise analytics team! This individual will partner with various areas of the company to help formulate their business problems into data science exercises and build end-to-end analytics solutions. They will also partner with other data scientists in the company to help support, operationalize, and maintain enterprise data science solutions.
This role will involve heavy collaboration with data engineers, data stewards, product owners and business experts to support projects throughout the entire data science lifecycle. The data scientist’s tasks will include data wrangling, exploratory data analysis, hypothesis testing, modeling, rapid prototyping, business validation/testing, and operational deployment.
Responsibilities:
Work cross functionally to help define problem statements, collect and wrangle data, conduct hypothesis testing, build and deploy machine learning models and make recommendations
Visualize information and develop engaging presentations on data science findings and results
Communicate findings and recommendations to technical and non-technical audiences
Partner with data scientists across the enterprise to help support the operationalization and ongoing maintenance of enterprise data science solutions
Maintain expertise and awareness of emerging data science techniques, technologies and potential business applications for ML/AI
Help coach and mentor data scientists and analysts throughout the company
Minimum Qualifications:
3+ years of Data Scientist experince (out of school)
Bachelor’s degree in a quantitative field (e.g., Mathematics, Statistics, Computer Science)
Strong programming skills in Python or R and SQL
Knowledge & applied experience using statistical and modeling techniques such as hypothesis testing, supervised learning methods (classification and regression), clustering, time series, and outlier/anomaly detection
Experience building, testing and deploying production ready models
Strong skills and knowledge of model training approaches, hyperparameter tuning, and model evaluation
Experience with data visualization tools and packages (e.g., Tableau, matplotlib, ggplot, etc.)
Ability to think creatively to solve problems and effectively break down complex problems into logical and manageable steps
Ability to present data and findings in a concise and engaging manner
Ability to communicate across all levels of the organization (technical and non-technical) and work with diverse project teams
Preferred Qualifications:
Master’s degree in a quantitative field (e.g., Mathematics, Statistics, Computer Science)
Experience using cloud-based infrastructure such as Azure and AWS
Experience with MLOps frameworks such as MLFlow
Experience working in an Agile environment
Experience using Spark for large scale data processing
*No H1B sponsership available*
Job Type: Full-time
Benefits:
401(k)
401(k) matching
Dental insurance
Employee discount
Health insurance
Health savings account
Life insurance
Paid time off
Retirement plan
Tuition reimbursement
Vision insurance
Schedule:
8 hour shift
Day shift
Monday to Friday
No nights
No weekends
Application Question(s):
Do you require sponsorship to work, now or in the future?
Education:
Bachelor's (Required)
Experience:
Statistical model: 3 years (Preferred)
SQL: 3 years (Preferred)
Data Science: 3 years (Preferred)
Work Location: Remote"
Data Scientist (Remote),Yelp,Remote,3.4,PostedPosted 30+ days ago,"$96,000 - $220,000 a year","Communicate key insights from analyses, experiments and data products to stakeholders.
Prior industry experience building online experimentation and machine…",https://www.indeed.com/rc/clk?jk=0072004f2d3180a4&fccid=0e94073a1c937bd1&vjs=3,"At Yelp, it’s our mission to connect people with great local businesses. Yelp’s unique dataset contains billions of interactions between users and businesses around the globe, from a review of a coffee shop to requesting a repair quote with a photo of a leaky faucet. Data Scientists at Yelp work to make sense of these interactions to deliver impactful analyses and products to our users, business partners and the general public.
The Data Science & Analytics team performs analyses, builds models, and designs experiments that directly impact Yelp’s products and users. Our teams sit in Yelp’s central product management organization and work directly with cross-functional leaders to understand quantitatively how our products are performing and where the largest opportunities are. We are adept at tasks like modeling user preferences, inference from user and marketplace experiments, and generating insights about the health of local economies. With diverse backgrounds and expertise, we strive for learning and growth in a collaborative environment.
This opportunity is fully remote and does not require you to be located in any particular state within the US. We welcome applicants from throughout the US.
Where You Come In:
Join a team of Data Scientists and Data Science Analysts that develop analytical frameworks and reliable measurement strategies for Yelp products
Design, execute, and analyze complex business and user experiments
Partner with other Data Scientists and Data Engineers to set the vision for and develop our experimentation platform
Devise and evaluate models for diverse business needs, such as identifying growth opportunities, estimating the impact of new features on our platforms, and personalizing the user experience
Proactively research and build ETL pipelines for product and marketplace metrics
Communicate key insights from analyses, experiments and data products to stakeholders
What It Takes to Succeed:
Ability to apply statistical, analytical and technical expertise to product and business problems
Prior experience structuring and leading impactful data science projects independently
Oral and written communication skills to mentor colleagues, and work effectively with partners on engineering, product and business teams
Expertise in SQL, and R or Python for data analysis and platform development
Enthusiasm for building a culture of learning and development
MS/PhD in quantitative field and 3+ years of industry experience in a senior quantitative role preferred
It's Nice To Have:
Product analytics experience with small business or consumer technology products
Prior industry experience building online experimentation and machine learning platforms
What You'll Get
This opportunity has the option to be fully remote in locations across the US.
Compensation range is $96,000-$220,000 annually. You may also be offered a bonus, restricted stock units, and benefits.
For more information about US benefits at Yelp, please check out this link.
#LI-Remote
At Yelp, we believe that diversity is an expression of all the unique characteristics that make us human: race, age, sexual orientation, gender identity, religion, disability, and education — and those are just a few. We recognize that diverse backgrounds and perspectives strengthen our teams and our product. The foundation of our diversity efforts are closely tied to our core values, which include “Playing Well With Others” and “Authenticity.”
We’re proud to be an equal opportunity employer and consider qualified applicants without regard to race, color, religion, sex, national origin, ancestry, age, genetic information, sexual orientation, gender identity, marital or family status, veteran status, medical condition or disability.
Actual salary offered may vary based on multiple factors, including but not limited to, an individual's location and experience.
We will consider for employment qualified candidates with arrest and conviction records, consistent with applicable law (including, for example, the San Francisco Fair Chance Ordinance for roles based in San Francisco).
We are committed to providing reasonable accommodations for individuals with disabilities in our job application process. If you need assistance or an accommodation due to a disability, you may contact us at [email protected] or 415-969-8488.
Note: Yelp does not accept agency resumes. Please do not forward resumes to any recruiting alias or employee. Yelp is not responsible for any fees related to unsolicited resumes.
CCPA Privacy Notice"
"Analyst I, Data Science",Liberty Mutual Insurance,Remote,3.6,PostedPosted 1 day ago,"$70,100 - $161,600 a year",Competencies typically acquired through a Master's degree (scientific field of study) and 0-1 years of relevant experience or a Bachelor's degree (scientific…,https://www.indeed.com/rc/clk?jk=cd0fa8f45814bb7e&fccid=f33a9750898d12d4&vjs=3,"The Product Design and Modeling Department of Global Retail Markets is hiring an individual contributor for its Complex Components team. The Complex Components team develops sophisticated models that are used as input, or as complement, to our core pricing programs. The Individual Contributor role will report to the Underwriting Design team Manager and will build predictive models to improve the effectiveness of our underwriting actions and improve profitability across Personal Lines. The ideal candidate is proactive and intellectually curious, highly technical, and can think through complex business questions efficiently.
**This is a ranged posting. Position offered will be based on candidate experience at manager discretion.**
Responsibilities:
Research strategies and methodologies for new applications of advanced modeling techniques to inform underwriting decisions across Personal Lines.
Build, refine, and evaluate predictive models.
Understand our UW rules and processes in great detail; Determine predictive modeling strategies to improve process and profitability outcomes.
Collaborate with Delivery, State, IT, and various PL experts across the organization to develop and implement models.
Present recommendations to key stakeholders.
Engage with the Data Science community.
Qualifications
Solid knowledge of predictive analytics techniques and statistical diagnostics of models.
Advance knowledge of predictive toolset; expert resource for tool development.
Demonstrated ability to exchange ideas and convey complex information clearly and concisely.
Has a value-driven perspective with regard to understanding of work context and impact.
Competencies typically acquired through a Master's degree (scientific field of study) and 0-1 years of relevant experience or a Bachelor's degree (scientific field of study) and 3+ years of relevant experience.
At Liberty Mutual, our purpose is to help people embrace today and confidently pursue tomorrow. That's why we provide an environment focused on openness, inclusion, trust and respect. Here, you'll discover our expansive range of roles, and a workplace where we aim to help turn your passion into a rewarding profession.
Liberty Mutual has proudly been recognized as a “Great Place to Work” by Great Place to Work® US for the past several years. We were also selected as one of the “100 Best Places to Work in IT” on IDG's Insider Pro and Computerworld's 2020 list. For many years running, we have been named by Forbes as one of America's Best Employers for Women and one of America's Best Employers for New Graduates—as well as one of America's Best Employers for Diversity. To learn more about our commitment to diversity and inclusion please visit: https://jobs.libertymutualgroup.com/diversity-inclusion
We value your hard work, integrity and commitment to make things better, and we put people first by offering you benefits that support your life and well-being. To learn more about our benefit offerings please visit: https://LMI.co/Benefits
Liberty Mutual is an equal opportunity employer. We will not tolerate discrimination on the basis of race, color, national origin, sex, sexual orientation, gender identity, religion, age, disability, veteran's status, pregnancy, genetic information or on any basis prohibited by federal, state or local law.
15"
Nurse Data Miner,The Marker Group,Remote,3.0,PostedPosted 4 days ago,$30 - $38 an hour,"We are seeking full time, temporary or part-time Nurse Data Miners to review records to identify additional locations to collect records (data mining), as per…",https://www.indeed.com/company/The-Marker-Group/jobs/Nurse-Data-Miner-140b655ec00b030a?fccid=e49cf332ec5a5a9d&vjs=3,"Nurse Data Miner
The Marker Group is a prominent national company in northwest Houston that provides primarily defense litigation support services including record collection and analysis and medical review for complex legal cases.
We are seeking full time, temporary or part-time Nurse Data Miners to review records to identify additional locations to collect records (data mining), as per project protocol. Full-time positions are 30-40 hours per week with benefits. Temporary or part-time positions are contract (no benefits) and will be 29 hours or less per week. Paid in-house training for 5 days, then completely remote.
Requirements:
Registered Nurse or LVN's
Minimum of 5 years clinical experience required, preferably ER, ICU, Critical Care. Other specialties will be considered.
Ability to effectively communicate verbally and in writing.
Strong computer skills. Proficient in Microsoft Office Word. Knowledge of and practice with Outlook, and Excel.
Strong organizational skills.
Strong critical thinking skills.
Ability to meet short deadlines and prioritize workload.
Job Types: Full-time, Part-time, Temporary
Pay: $30.00 - $38.00 per hour
Schedule:
Self-determined schedule
Work Location: Remote"
Data Scientist Co-Op (Spring 2023),The Hershey Company,Remote,3.7,PostedPosted 30+ days ago,NaN,"Collaborates with IT to prepare and manipulate structured and unstructured data for data discovery and mining from multiple, disparate, resources.",https://www.indeed.com/rc/clk?jk=c5c10211b71b9b8f&fccid=e08898c7a89673c9&vjs=3,"Location: Remote
Duration: Spring 2023
WHY HERSHEY?
The Hershey Company is a global fortune 500 company that is a recognized leader in the Consumer Packaged Goods industry. Our goal is to integrate students with our knowledgeable and successful teams in order to maintain a fresh perspective on an ever-changing world. Every day presents new challenges and opportunities to learn, grow and innovate. Are you up for the challenge? Are you ready to make a difference?
WHY SUPPLY CHAIN AT HERSHEY?
The Supply Chain organization at The Hershey Company has open internships for analytically minded, tech-savvy undergraduate and graduate students. Technology and analytics are elemental to all aspects of Hershey’s supply chain. Hershey has a diverse global team focused on providing robust innovative capabilities, partnering on analysis to drive successful business outcomes and embraces an entrepreneurial mindset to create an environment that is exciting, compelling, innovative and dynamic.
We are looking to fill a Data Scientist Co-Op role with the Supply and Demand Planning Center of Excellence. This role will be focused on using implementing analytical methods through software to understand, improve and monitor our forecasting system and process. Additional data related problems are continuously arising; additional opportunities will be available based on experience/skill level. This work ensures the most accurate forecasts are being used to impact multiple facets of our supply chain planning.
RESPONSIBILITIES:
Collaborates with IT to prepare and manipulate structured and unstructured data for data discovery and mining from multiple, disparate, resources.
Builds high-end analytic models, utilizing supervised and unsupervised learning models, to support decision makers with data driven insights that address immediate business problems and objectives.
Creates informative visualizations that intuitively display large amounts of data and/or complex relationships.
Translates data analytics into coherent reports and presentations for internal and external customer with varying degrees of technical knowledge.
QUALIFICATIONS:
Passion for analytical problem solving.
Pro-active problem solver who continually asks why to understand root causes.
Experience with R or Python, SQL.
Knowledge of advanced statistical techniques and concepts (regression, properties of distributions, statistical tests and proper usage, etc.) and experience with applications.
Knowledge of machine learning techniques and approaches (feature engineering, classification, clustering, decision trees, etc.).
Knowledge of time series analysis and forecasting a plus.
Familiar with software engineering tools and processes (git, repositories, containers, devops, PyCharm,etc.).
Quick learner through formal and self-guided education.
Ability to work in teams or individually.
Courage to challenge the status quo and take smart risks.
Excellent written and verbal communication skills for coordinating across teams.
EDUCATION:
Bachelors degree candidates in quantitative, STEM focused programs are preferred (e.g. Business, Computer Science, Engineering, Economics, Mathematics, Statistics)
Demonstrated experience with, and knowledge of, tools and techniques will also be considered.
The Hershey Company is an Equal Opportunity Employer. The policy of The Hershey Company is to extend opportunities to qualified applicants and employees on an equal basis regardless of an individual's race, color, gender, age, national origin, religion, citizenship status, marital status, sexual orientation, gender identity, transgender status, physical or mental disability, protected veteran status, genetic information, pregnancy, or any other categories protected by applicable federal, state or local laws.
The Hershey Company is an Equal Opportunity Employer - Minority/Female/Disabled/Protected Veterans
If you require a reasonable accommodation as part of the application process, please contact the HR Service Center ([email protected])."
Data Scientist,Ntropy Network,"Remote in New York, NY",NaN,PostedPosted 24 days ago,"$130,000 a year","Our end product is an API that makes financial transactions accessible to both humans and machine-learning models, in a scalable and privacy-preserving way.",https://www.indeed.com/rc/clk?jk=fe6e382847752143&fccid=dd616958bd9ddc12&vjs=3,"Over the last few decades, technological innovation has relied on democratizing some of its key ingredients: knowledge (open publishing platforms), algorithms (code repositories) and computing (cloud providers). However, the last key component, data, largely remains trapped behind barriers of regulation, privacy, schema standards and competitive risk. Enabling scalable access to data will unlock enormous value for both individual developers and companies. This has only been made possible in the last few years, through advances in manifold learning algorithms and privacy-preserving computing. See our blog for more details.
One of the most valuable kinds of data today is in the financial sector. Financial data plays a key role across many industry verticals. However, it has notoriously been locked behind regulatory barriers and a lack of format standards. Our end product is an API that makes financial transactions accessible to both humans and machine-learning models, in a scalable and privacy-preserving way.
We
- come from various fields - engineering, mathematics, physics and arts.
- are allergic to over-engineering.
- are anarchists at heart and like to hack around the status quo.
love playing board and video games.
- are radically honest and appreciate challenging one another, rather than giving out “pats on the back”. Yet, we can always rely on each other for support, feedback and results.
- are willing to learn and adapt quickly to new situations and requirements. Languages, frameworks, libraries, compilers, etc. are just tools for a job. A new problem might need a new tool. If it doesn’t exist yet, we will build it.
- have a sense of humor (well, we think we do).
As an early member of our data science team, you will help
- push the limits of what can be done with data.
- build the team and drive the direction of the company.
- shape our product and culture.
- experience the direct impact of what you build on hundreds of millions of people’s financial lives.
The following are required
- the tools: Python, Pandas / Polars, Matplotlib, sklearn, etc.
SQL and fundamental database operations.
- recognized open-source contributions and/or top performance in data competitions (Kaggle, Numerai, etc.).
fluency in statistics and probability.
FAQ
Where is Ntropy located?
We are fully remote, with a virtual base in New York, US.
What time-zones do you work with?
We hire anywhere in GMT-7 to GMT+1.
Do you consider part-time work?
Not at the moment. Full-time roles only.
How are you funded?
We are backed by some of the top fintech investors in the world. Have raised single-digit millions of dollars so far. Can share more details over the call.
Do you already have a product and customers?
Yes. We have been in production since 1st April 2021 and have been rapidly growing since.
Do you plan to sell customer data?
Ntropy is on a mission to enable products without data barriers. We will never sell customer data and will always put privacy and customer benefit ahead of any auxiliary financial gains.
What is the interview process like?
1. Send us problems you have solved before and how. Please include as much detail as possible: code, algorithms, derivations, proofs, etc. We will then do a video call to kick things off and go through it (45 mins).
2. We will give you a take-home project related to whatever we are currently working on (3-4 hours). Alternatively, if you have a relevant project that you worked on previously that demonstrates your skills as an engineer, you are welcome to use that instead.
3. We will then do a deep-dive through the project over a call and discuss the implementation, improvements and bottlenecks.
Above all, we respect your time and commitment and will keep you up to speed on where we are at during the whole process.
What are your hiring plans?
We aim to be 30-40 people by the end of the year. Mostly engineering roles.
What is your current stack?
back-end - Python + Rust (where performance matters)
compute - AWS, GCP
ML - PyTorch, ONNX, Triton
Work / life balance?
We are a startup which requires you to put in a lot more work and soul than a regular job. We believe, however, that nothing easy is worth doing. We will expect a lot from you, and you should expect a lot from us.
What is the compensation?
$130k (adjusted for location) • 0.09%"
Data Scientist,DeepScribe,"Remote in San Francisco, CA",2.4,PostedPosted 2 days ago,NaN,"Analyze product data to identify problems and ideate product features and process enhancements.
Build controls, processes, and systems to ensure SLAs are met to…",https://www.indeed.com/rc/clk?jk=f7b2e9206e2fd91c&fccid=cb212f9b563bf78a&vjs=3,"Our Mission
At DeepScribe, everything we do is focused on our mission - to bring back the joy of care to medicine. Our goal is to empower physicians with the tools they need to improve both efficiency and efficacy and to improve patient outcomes by increasing the trust and understanding they have with their physicians. You will have the opportunity to transform healthcare.
What you'll do
As a Data Scientist, you will be accountable for data gathering and analysis of capacity forecasts, experiment results, and optimization of demand profiles.
Your impact
As a Data Scientist, you will apply operations research and statistical models to solve core challenges to DeepScribe.
You will work closely with senior executives to drive data-driven decisions related to human-in-the-loop Operations, Revenue Operations, and Product Operations.
Build data infrastructure to measure individual user service level requirements and develop systems to intelligently route resources to meet those requirements.
Develop models that measure growth, seasonality, and absorption of our human in the loop operation (contingent/partner resources) to train AI models and deliver medical notes within company-set SLAs.
Forecast quarterly, and semi-annually the capacity needed, alongside ensuring team members fulfill scheduled shifts from a demand side. Build controls, processes, and systems to ensure SLAs are met to deliver a best-in-class service.
Analyze product data to identify problems and ideate product features and process enhancements. Work cross functionally to pioneer and drive your own ideas to execution.
Contribute to margin improvement and experimental efforts
Drive experimentation and launch new data-driven efforts
Work Cross functionally and with leaders to build centralized reporting infrastructure
About You
Experience as a Data Scientist in a technology company
Degree in Data Science, Data Analytics, Statistical Analysis, or similar
Thrive in an independent work environment
Detail-oriented, leave nothing to chance
Achieve goals consistently and efficiently
Hold yourself accountable for work completed
You're proficient with general reporting tools and languages. SQL is a must, and you also have experience with other tools like Excel, Python, or R.
Perks and benefits
Meaningful equity stake in the company
Flexible PTO
Work from home stipend
Medical, Dental, Vision, 401K and other benefits are also offered
About the Team
At DeepScribe, we value trust, teamwork, and transparency, and we're dedicated to promoting diversity and equity in the workforce through inclusive hiring practices. Candidates with backgrounds that are underrepresented in the technology industry are encouraged to apply.
In compliance with federal law, all persons hired will be required to verify identity and eligibility to work in the United States and to complete the required eligibility verification form upon hire."
Junior Data Scientist,Augray,"Remote in Brookfield, WI 53045",NaN,PostedPosted 30+ days ago,"$55,000 - $60,000 a year","Exposure to writing code (Python preferred, R and SQL okay), collaboration (Git), developing models (machine learning, boosting & bagging algorithms, &/or…",https://www.indeed.com/rc/clk?jk=3af02d93417e951c&fccid=2e2cd27fc703e613&vjs=3,"Brookfield, WI, USA
Summary:
Hiring Fresher to 1 year experience in Data Science, ML with python and strong analytical skills with a passion to take part in R&D.
About AugRay:
Augray is on a mission to build next generation method of communication using Extended Reality – XR (AR/ VR/ MR) technologies and change the way businesses re conducted and how interactions happen with people. In an age where innovation is happening all around us, there’s commonality – people are driving these changes. We offer a solution that helps to articulate product demonstration and how people conversation takes place using smartphones and wearable glasses.
We are a fast-growing tech start up and have grown to over 100 employees today, launched 3 products and customers across 3 continents including brands like CocaCola, Reliance, Caterpillar, Simpsons and more.
We’re a small and impactful team of engineers, artists, solution geeks continuously working to improve our product and our craft. We use modern, cutting-edge tech stack and love experimenting and patenting with new technologies to create our products and provide opportunities for them to continue to learn and grow into leaders and experts.
We are excited to find a person that has the passion, experience, and ability to own significant R&D tasks and product evolution working individually and or along with a team of virtual engineers.
About the Role:
Research isn’t just a buzzword to you In your role as a Data Science Associate, you will use AI, ML (Machine Learning) to deliver insightful and actionable intelligence and predictive solutions to our team to create innovative solutions for our products. You will gain experience working in AR (Augmented Reality), ML, NLP and developing data driven solutions to create algorithms while working closely with other team members of our Data Science and engineering team to deliver value to our product evolution. Aside from supporting our data science model creation and data teams, you'll also assist the product team with growth opportunities. You over-invest in the visual and interaction and a passion to solve challenges while creating innovative patentable approaches.
Required Skills:
Work with Product Managers and Engineers to dive deep into data and the user experience
Construct product metrics and statistical models to identify growth opportunities
Handle data annotation and data analysis requests from multiple stakeholders with high efficiency and quality in a fast-paced environment.
Help with the development of the annotation guidelines.
Analyze language data and evaluate trends and patterns.
Participate in an annotation tool testing and onboarding.
Track and report quality metrics and ensure delivery on all KPIs and SLAs agreed with stakeholders.
Maximize productivity, process efficiency and quality through streamlined workflows, process standardization, documentation, audits and investigations on a periodic basis.
Qualifications:
Bachelor’s or equivalent experience in Mathematics, Statistics, Econometrics, Computer Science, Electrical or Computer Engineering, or related field
1+ years’ of experience as data scientist, modeling in python or R
Bachelor/master’s degree students pursuing degrees in data science, statistics, applied math, computer science, engineering or other quantitative fields providing sufficient data science foundations
Exposure to writing code (Python preferred, R and SQL okay), collaboration (Git), developing models (machine learning, boosting & bagging algorithms, &/or regression techniques), and performing predictive analytics testing and evaluation (match case analysis, confidence intervals, experimental design, A/B testing, etc.).
A hunger to learn and work on challenging problems.
Location: Remote (work along with other remote engineers)
Compensation: 55K to 60K with benefits
Please contact: [email protected]
Immigration status: You should be a US Citizen or GC holder
Start Date: ASAP"
"Data Scientist, Analytics II #0000","Twitch Interactive, Inc.","Remote in San Francisco, CA 94104",3.5,PostedPosted 22 days ago,NaN,"1 year of experience using statistical computer language R, Python, or SQL to manipulate data and draw insights from large data sets.",https://www.indeed.com/rc/clk?jk=e81231b39cf512d0&fccid=fe2d21eef233e94a&vjs=3,"A Master’s degree or foreign equivalent in Computer Science, Engineering, Artificial Intelligence, Data Analytics, Statistics, Mathematics, or related field and 1 year of experience in a related occupation.
In the alternative, employer will accept a Bachelor’s degree or foreign equivalent in Computer Science, Engineering, Artificial Intelligence, Data Analytics, Statistics, Mathematics, or related field followed by 5 progressively responsible years of experience in a related occupation.
Experience must include:
1. 1 year of experience developing A/B testing frameworks.
2. 1 year of experience visualizing data using Tableau.
3. 1 year of experience using statistical computer language R, Python, or SQL to manipulate data and draw insights from large data sets.
4. 1 year of experience applying fundamental statistical principles to solve applied problems.
Telecommuting benefits available
#0000
Job summary
Employer: Twitch Interactive, Inc.
Position: Data Scientist, Analytics II
Location: San Francisco, CA
Multiple Positions Available
1. Transform data into actionable insights and take data-driven approach to drive business decisions.
2. Translate loosely-defined business problems into analytic terms by applying and adapting existing frameworks and solutions. Deliver artifacts in the form of analysis reports, spreadsheets, design specs (for data tracking or A/B experiments) and dashboards. Build solutions that scale wherever possible, and partner with engineers or other teams to deliver self-serve tools that automate repeatable analytic tasks.
3. Solve problems using appropriate assumptions and translate findings into actionable recommendation.
4. Assume responsibility for correct implementation and validate data, assumptions and results.
5. Communicate work clearly, and adapt messaging for both technical and nontechnical audiences.
6. Participate in team business reviews, design, scoping, and prioritization discussions.
7. Work effectively with customers and/or internal partners to understand business impacts and identify any opportunities/problems arising from the technical or business decisions.
8. Provide feedback and analytics guidance to more junior team members.
9. Telecommuting benefits available.
#0000
All applicants must meet all the above listed requirements.
#0000
Amazon is committed to a diverse and inclusive workplace. Amazon is an equal opportunity employer and does not discriminate on the basis of race, national origin, gender, gender identity, sexual orientation, protected veteran status, disability, age, or other legally protected status. For individuals with disabilities who would like to request an accommodation, please visit https://www.amazon.jobs/en/disability/us.
Pursuant to the San Francisco Fair Chance Ordinance, we will consider for employment qualified applicants with arrest and conviction records."
"Data Scientist, Baseball Research & Development",Cleveland Guardians - Baseball Operations,"Remote in Cleveland, OH",NaN,PostedPosted 30+ days ago,NaN,"The Cleveland Guardians Baseball Research & Development (R&D) group is seeking data scientists at a variety of experience levels, including senior, entry-level,…",https://www.indeed.com/rc/clk?jk=4e36abb4c8802708&fccid=dd616958bd9ddc12&vjs=3,"Primary Purpose
The Cleveland Guardians Baseball Research & Development (R&D) group is seeking data scientists at a variety of experience levels, including senior, entry-level, and interns/fellows. Prior experience with sports is not necessary if you have some curiosity or interest in learning about data science applications in baseball.
If you enjoy tackling challenging problems, using interesting real data, collaborating with smart people, and having a direct impact on what happens on the baseball field and in our business, this may be the opportunity for you!
People in this role will use statistical and machine learning techniques to better understand and quantify the game of baseball. You will analyze video, player tracking, and biomechanics data as well as traditional baseball data sources like box scores to help us acquire and develop baseball players into a championship-caliber team. You will work alongside the rest of the R&D, data engineering, and IT groups, and interact with coaches, scouts, and executives from across the organization.
The Cleveland Guardians prefer our employees (or teammates) reside in Cleveland, Ohio, but we will consider and discuss the possibility of remote work. We can also be flexible on start dates.
If you meet some of the qualifications below, we encourage you to apply or reach out for more information. We know that historically marginalized groups – including people of color, women, people from working class backgrounds, and people who identify as LGBTQ – are less likely to apply unless and until they meet every requirement for a job. We encourage you to reach out if you have questions about the role or your qualifications. We are happy to help you feel ready to apply!
Responsibilities
Design, build, test, and deploy statistical and/or machine learning models to support all facets of baseball operations, including scouting, player development, and the major league team.
Effectively communicate actionable insights to key stakeholders across the organization.
Using data to visualize model outputs and important baseball concepts.
Qualifications
Demonstrated experience or advanced degree in a quantitative field such as Statistics, Computer Science, Economics, Machine Learning, or Operations Research.
Programming skills in a language such as R or Python to work efficiently at scale with large data sets.
Desire to continue learning about data science applications in baseball.
Preferred Experience
We are looking for a variety of skill sets. If you have demonstrated experience with one or more of the following, you may be who we are looking for.
Demonstrated research experience in a sports context (baseball is a plus).
Experience with a database language such as SQL.
Experience with computer vision.
Experience working with spatiotemporal data.
Experience working with high-dimensional time series data.
Experience with deep learning frameworks such as TensorFlow or Torch.
Experience with Bayesian statistics and languages such as Stan.
Standard Requirements
All applicants for employment with the Cleveland Guardians will need to comply with the Cleveland Guardian Vaccination Policy as a condition of employment. Potential candidates for employment will be notified of the requirements of this policy prior to the start of employment.
Represent the Cleveland Guardians in a positive fashion to all business partners and the general public.
Ability to develop and maintain successful working relationship with members of the Front Office.
Ability to act according to the organizational values and service excellence at all times.
Ability to work with multicultural populations and have a commitment to fairness and equality.
Ability to work in a diverse and changing environment.
About Us
Our teammates are at the core of what we believe in: People, Collaboration, Learning, and Excellence (PeopleCLE). We look to hire individuals who are committed to our purpose of uniting and inspiring our city with the power of team. Our mission is to win the World Series while creating a compelling fan experience.
We believe that we will achieve our goals by making evidence and model-based decisions and creating environments that support our people and empower them to continuously learn. This role might be for you if you are looking to join a team that works together to learn new ways to make model-based decisions that lead to excellent outcomes.
We also pride ourselves on creating an attractive work environment highlighted by a healthy work-life balance, exceptional benefits such as health, vision, and dental coverage, and competitive 401k plan with employer contribution and match.
Our Hiring Process
A short, three question questionnaire to help us get to know you better than we do from just your application. No coding involved.
Two approximately 30-minute phone calls.
A longer take-home questionnaire to help us learn how you think through problems. No coding or project involved.
A final round of interviews with our R&D department as well as teammates across Baseball Operations."
Jr. Data Scientist,Net2Aspire,Remote,NaN,EmployerActive 2 days ago,"$65,000 - $80,000 a year", Create data dashboards and other data visualization tools to track progress to inform continuous quality improvement of the Congregate Settings Investigation…,https://www.indeed.com/company/net2aspire/jobs/Junior-Data-Scientist-41ce767aa007133d?fccid=268145626d239938&vjs=3," Apply Statistical and Machine Learning methods to specific business problems and data.
Ensure data quality throughout all stages of acquisition and processing, including such areas as data sourcing/collection, ground truth generation, normalization, transformation, cross-lingual alignment/mapping, etc.
Using tools such as Tableau, Looker and GoogleData Studio to aggregate data from across our software tools to build and develop dashboards for both client-facing and internal purposes across the company that feature relevant KPIs and metrics
Create data dashboards and other data visualization tools to track progress to inform continuous quality improvement of the Congregate Settings Investigation and Response Unit.
Design, develop, evaluate, and release highly innovative models elevate the customer experience and track impact over time
Job Types: Full-time, Part-time, Contract
Salary: $65,000.00 - $80,000.00 per year
Benefits:
401(k)
Health insurance
Schedule:
8 hour shift
Monday to Friday
Experience:
Data science: 1 year (Required)
Machine learning: 1 year (Required)
Work Location: Remote"
Data Scientist,Premier Inc.,Remote,3.8,PostedPosted 4 days ago,"$64,000 - $118,000 a year","You will be a member of a multidisciplinary team of data scientists, engineers, and clinicians tackling complex problems in a data-driven and collaborative way.",https://www.indeed.com/rc/clk?jk=9a82bddb264631d6&fccid=11802080879afc60&vjs=3,"Data Scientist
At Stanson Health (a Premier Inc subsidiary), we are passionate about building products that measurably improve patient care quality, safety, and affordability. Our products positively impact millions of patients by giving providers real-time treatment recommendations or automating time-consuming administrative tasks such as prior authorization. Foundational to all our products is a proprietary AI engine that processes patient information in real-time, leveraging state-of-the-art machine learning at scale.
What will you be doing:
As part of the Data Science team, you will have responsibility for conceptualizing, designing, implementing and deploying new machine learning algorithms into production daily. You will be a member of a multidisciplinary team of data scientists, engineers, and clinicians tackling complex problems in a data-driven and collaborative way. As a fully remote team, we value self-driven, result-oriented individuals mindful of tradeoffs between near-term needs and long-term strategic goals.
What we're looking for:
Required Qualifications
Work Experience:
Years of Applicable Experience - 2 or more years
Skills & Experience:
Airflow, Applied Machine Learning, Cross Functional Projects, Python, Software Development
Education:
Bachelors
In order to comply with applicable legal obligations, Premier requires employees to provide proof of full vaccination against COVID-19. We will consider requests for disability or religious accommodations during the recruiting process as needed. Premier will also observe state laws related to vaccination, as applicable.
PREFERRED QUALIFICATIONS
Two or more years in applied machine learning in fields such as Natural language processing (NLP) or Computer Vision (CV)
Strong preference in Python, model development frameworks such as PyTorch or Tensorflow
Experience with manipulating and analyzing large-scale datasets
Experience working in cross-functional teams
Software Development using source control and versioning
#LI-SD1
#LI-Remote
Premier’s compensation philosophy is to ensure that compensation is reasonable, equitable, and competitive in order to attract and retain talented and highly skilled employees. Premier’s internal salary range for this role is $64,000 - $118,000. Final salary is dependent upon several market factors including, but not limited to, departmental budgets, internal equity, education, unique skills/experience, and geographic location. Premier utilizes a wide-range salary structure to allow base salary flexibility within our ranges.
Employees also receive access to the following benefits:
Health, dental, vision, life and disability insurance
401k retirement program
Paid time off
Participation in Premier’s employee incentive plans
Tuition reimbursement and professional development opportunities
Premier at a glance:
Ranked #1 on Charlotte’s Healthiest Employers list for 2019, 2020 and 2022, and 49th Healthiest Employer in America (2022)
Named one of the World’s Most Ethical Companies® by Ethisphere® Institute for the 13th year in a row
The only company to be recognized by KLAS twice for Overall Healthcare Management Consulting
Employees receive:
Perks and discounts
Access to on-site and online exercise classes
Paid time off to volunteer in their communities
Premier is looking for smart, agile individuals like you to help us transform the healthcare industry. Here you will find critical thinkers who have the freedom to make an impact. Colleagues who share your thirst to learn more and do things better. Teammates committed to improving the health of a nation. See why incredible challenges require incredible people.
Qualified applicants will receive consideration for employment without regard to unlawful discrimination because of their age, race, color, religion, national origin, ancestry, citizenship status, gender, sexual orientation, gender identity, gender expression, marital status, familial status, pregnancy status, genetic information, status as a victim of domestic violence, covered military or protected veteran status, disability, or any other applicable federal, state or local protected class, trait or status or that of persons with whom an applicant associates. We also consider qualified applicants with criminal histories, consistent with applicable federal, state and local law. In addition, as a federal contractor, Premier complies with government regulations, including affirmative action responsibilities, where they apply.
Premier also provides reasonable accommodations to qualified individuals with a disability or those who have a sincerely held religious belief. If you need assistance in the application process, please reply to
or contact Premier Recruiting at 704.816.5200."
Data Scientist,Underwriters Laboratories Inc.,"Remote in Northbrook, IL 60062+1 location",3.6,PostedPosted 2 days ago,NaN,"The Data Scientist will be working with the product, engineering, and ML Ops teams to develop innovative solutions for retail and TIC problems using machine…",https://www.indeed.com/rc/clk?jk=4e86b0576e810902&fccid=353853af3b99ac74&vjs=3,":
At UL, we know why we come to work.:
Thousands of us around the world wake up every day with a common purpose: to make the world a safer, more secure, and sustainable place. Science is in our DNA; we are endlessly curious and passionate about seeking and speaking the truth. We take delight in knowing that our work makes a meaningful contribution to society, and we are proud that our culture is centered on integrity, collaboration, inclusion, and excellence. UL stands at the forefront of technological advancement, and we are continually challenged to find new ways to foster innovation and positive change.
Satisfying? Yes. Exciting? Absolutely!
What you’ll learn & achieve::
The Data Scientist will be working with the product, engineering, and ML Ops teams to develop innovative solutions for retail and TIC problems using machine learning, NLP, deep learning, and statistical methods
Conduct data exploration, analysis, and experiments to establish technical viability of business ideas
Collaborate with ML engineers and QA team to productionize the models
Research state-of-the-art tools and techniques in data science and help integrate them in our development processes
Present all aspects of a data science project to lead technical and non-technical audiences through the goals, methods, and implications of the project
Write research papers, presentations, and patents, where applicable
What makes you a great fit::
University Degree (Equivalent to Bachelor’s degree) in Computer Science, Data Science, statistics, or a related discipline with 1+ years of work experience in data science
Experience using machine learning, deep learning, NLP, and advanced statistical methods to solve business problems
Solid technical knowledge and experience writing and testing Python code in production
Experience with large datasets
Knowledge of SQL
Strong interpersonal skills with the ability to communicate with technical and non-technical internal and stakeholders
Strong sense of ownership and ability to work independently on ambiguous problems
UL has COVID-19 protocols and policies in place to ensure the safety of our employees, customers, and clients. Effective November 1, 2021, the company mandates that employees are vaccinated against COVID-19 as a condition of employment (except where prohibited by law), subject to reasonable accommodation as required by law.
What you’ll experience working at UL::
Mission: For UL, corporate and social responsibility isn’t new. Making the world a safer, more secure, and sustainable place has been our business model for the last 125 years and is deeply engrained in everything we do.
People: Ask any UL employee what they love most about working here, and you’ll almost always hear, “the people.” Going beyond what is possible is the standard at UL. We’re able to deliver the best because we employ the best.
Interesting work: Every day is different for us here as we eagerly anticipate the next innovation that our customers create. We’re inspired to take on the challenge that will transform how people live, work and play. And as a global company, in many roles, you will get international experience working with colleagues around the world.
Grow & achieve: We learn, work, and grow together with targeted development, reward, and recognition programs as well as our very own UL University that offers extensive training programs for employees at all stages, including a technical training track for applicable roles.
Total Rewards: All employees at UL are eligible for bonus compensation. UL offers a generous 401k matching structure of up to 5% of eligible pay. Additionally, we invest an additional 4% into your retirement saving fund after your first year of continuous employment. We provide Healthcare Reimbursement Accounts and Health Savings Accounts that UL contributes to twice per year! Depending on your role, you can work with your manager on flexible working arrangements. We also provide employees with paid time off including vacation, holiday, sick and volunteer time off.
Learn More::
Working at UL is an exciting journey that twists and turns daily. We thrive in the twists and revel in the turns.
This is our every day. This is our normal.
Curious? To learn more about us and the work we do, visit UL.com"
Data Scientist,Radcube LLC,Remote,NaN,EmployerActive 4 days ago,"$111,648 - $122,984 a year","The role will involve working with Research Scientists in analyzing complex data, generating insights, and creating solutions as needed across a variety of…",https://www.indeed.com/company/Radcube-LLC/jobs/Data-Scientist-635c45a8d9deb90e?fccid=f51b75d687e40b14&vjs=3,"As a Data Scientist, you will be analyzing a wide range of unstructured data to address problems through attentive listening, astute planning, and out of the box thinking to develop solutions and reporting results in an engaging manner. The role will involve working with Research Scientists in analyzing complex data, generating insights, and creating solutions as needed across a variety of tools and platforms. The ideal candidate for this position will possess ability to perform both independent and team-based research and generate insights from large data sets with a hands-on/can do attitude of servicing/managing day today data requests and analysis.
Skill Set – Have 3+ years' experience working with NLP (must to have), text analytics, proficiency in Python/R, and Git. Detailed information about Python and/ or R with the real time experience, instead of few bullet points. Experience in Pharma domain and unstructured text handling is a plus. Experience and knowledge of NLP is a plus Experience and knowledge with different model, expertise and accomplishments. Experience with text parsing/regular expressions (regex), and proficiency in libraries like Pandas, re, sci-kit learn, docx at some level Command of data science principles (regression, Bayes, time series, clustering, P/R, AUROC) Profile – Professional resume with good writeup about their experience and expertise and clear academic information with year and stream. Focus should be on relevant experience and technologies for this job. This would be helpful for evaluation. Machine Learning / Deep Learning Algorithms - Logistic Regression, SVM, Naive Bayes , RNN etc. With detailed information about experience and working knowledge. Text Analytics (Importance of everything in words as given above). Explain what is the real experience, rather mentioning just Test Analytics Sentiment analysis (e.g customer is happy, sad, likes a brand, positive or negative for a service or product and so on using available/ customizable python/R libraries) Sound Knowledge of Python/R. For example; if someone talk about Python or R, they can be explanatory that how did they use Python/ R rather adding few bullet points. Purpose, key highlights, accomplishments etc.. Having some cloud experience would give added advantage.
Must have:
Python, R
Cloud
Data Analytics
Machine Learning, NLP
Text Analytics
Job Types: Full-time, Contract
Pay: $111,648.00 - $122,984.00 per year
Schedule:
8 hour shift
Experience:
Python: 3 years (Required)
Natural language processing: 3 years (Required)
R: 3 years (Preferred)
cloud: 3 years (Required)
Machine learning: 3 years (Preferred)
Text Analytics: 3 years (Preferred)
Data analytics: 3 years (Preferred)
Data visualization: 3 years (Required)
Predictive analytics: 1 year (Preferred)
Deep learning: 1 year (Preferred)
Work Location: Remote"
Data Scientist,Ntropy Network,"Remote in New York, NY",NaN,PostedPosted 24 days ago,"$130,000 a year","Our end product is an API that makes financial transactions accessible to both humans and machine-learning models, in a scalable and privacy-preserving way.",https://www.indeed.com/rc/clk?jk=fe6e382847752143&fccid=dd616958bd9ddc12&vjs=3,"Over the last few decades, technological innovation has relied on democratizing some of its key ingredients: knowledge (open publishing platforms), algorithms (code repositories) and computing (cloud providers). However, the last key component, data, largely remains trapped behind barriers of regulation, privacy, schema standards and competitive risk. Enabling scalable access to data will unlock enormous value for both individual developers and companies. This has only been made possible in the last few years, through advances in manifold learning algorithms and privacy-preserving computing. See our blog for more details.
One of the most valuable kinds of data today is in the financial sector. Financial data plays a key role across many industry verticals. However, it has notoriously been locked behind regulatory barriers and a lack of format standards. Our end product is an API that makes financial transactions accessible to both humans and machine-learning models, in a scalable and privacy-preserving way.
We
- come from various fields - engineering, mathematics, physics and arts.
- are allergic to over-engineering.
- are anarchists at heart and like to hack around the status quo.
love playing board and video games.
- are radically honest and appreciate challenging one another, rather than giving out “pats on the back”. Yet, we can always rely on each other for support, feedback and results.
- are willing to learn and adapt quickly to new situations and requirements. Languages, frameworks, libraries, compilers, etc. are just tools for a job. A new problem might need a new tool. If it doesn’t exist yet, we will build it.
- have a sense of humor (well, we think we do).
As an early member of our data science team, you will help
- push the limits of what can be done with data.
- build the team and drive the direction of the company.
- shape our product and culture.
- experience the direct impact of what you build on hundreds of millions of people’s financial lives.
The following are required
- the tools: Python, Pandas / Polars, Matplotlib, sklearn, etc.
SQL and fundamental database operations.
- recognized open-source contributions and/or top performance in data competitions (Kaggle, Numerai, etc.).
fluency in statistics and probability.
FAQ
Where is Ntropy located?
We are fully remote, with a virtual base in New York, US.
What time-zones do you work with?
We hire anywhere in GMT-7 to GMT+1.
Do you consider part-time work?
Not at the moment. Full-time roles only.
How are you funded?
We are backed by some of the top fintech investors in the world. Have raised single-digit millions of dollars so far. Can share more details over the call.
Do you already have a product and customers?
Yes. We have been in production since 1st April 2021 and have been rapidly growing since.
Do you plan to sell customer data?
Ntropy is on a mission to enable products without data barriers. We will never sell customer data and will always put privacy and customer benefit ahead of any auxiliary financial gains.
What is the interview process like?
1. Send us problems you have solved before and how. Please include as much detail as possible: code, algorithms, derivations, proofs, etc. We will then do a video call to kick things off and go through it (45 mins).
2. We will give you a take-home project related to whatever we are currently working on (3-4 hours). Alternatively, if you have a relevant project that you worked on previously that demonstrates your skills as an engineer, you are welcome to use that instead.
3. We will then do a deep-dive through the project over a call and discuss the implementation, improvements and bottlenecks.
Above all, we respect your time and commitment and will keep you up to speed on where we are at during the whole process.
What are your hiring plans?
We aim to be 30-40 people by the end of the year. Mostly engineering roles.
What is your current stack?
back-end - Python + Rust (where performance matters)
compute - AWS, GCP
ML - PyTorch, ONNX, Triton
Work / life balance?
We are a startup which requires you to put in a lot more work and soul than a regular job. We believe, however, that nothing easy is worth doing. We will expect a lot from you, and you should expect a lot from us.
What is the compensation?
$130k (adjusted for location) • 0.09%"
Data Scientist,DeepScribe,"Remote in San Francisco, CA",2.4,PostedPosted 2 days ago,NaN,"Analyze product data to identify problems and ideate product features and process enhancements.
Build controls, processes, and systems to ensure SLAs are met to…",https://www.indeed.com/rc/clk?jk=f7b2e9206e2fd91c&fccid=cb212f9b563bf78a&vjs=3,"Our Mission
At DeepScribe, everything we do is focused on our mission - to bring back the joy of care to medicine. Our goal is to empower physicians with the tools they need to improve both efficiency and efficacy and to improve patient outcomes by increasing the trust and understanding they have with their physicians. You will have the opportunity to transform healthcare.
What you'll do
As a Data Scientist, you will be accountable for data gathering and analysis of capacity forecasts, experiment results, and optimization of demand profiles.
Your impact
As a Data Scientist, you will apply operations research and statistical models to solve core challenges to DeepScribe.
You will work closely with senior executives to drive data-driven decisions related to human-in-the-loop Operations, Revenue Operations, and Product Operations.
Build data infrastructure to measure individual user service level requirements and develop systems to intelligently route resources to meet those requirements.
Develop models that measure growth, seasonality, and absorption of our human in the loop operation (contingent/partner resources) to train AI models and deliver medical notes within company-set SLAs.
Forecast quarterly, and semi-annually the capacity needed, alongside ensuring team members fulfill scheduled shifts from a demand side. Build controls, processes, and systems to ensure SLAs are met to deliver a best-in-class service.
Analyze product data to identify problems and ideate product features and process enhancements. Work cross functionally to pioneer and drive your own ideas to execution.
Contribute to margin improvement and experimental efforts
Drive experimentation and launch new data-driven efforts
Work Cross functionally and with leaders to build centralized reporting infrastructure
About You
Experience as a Data Scientist in a technology company
Degree in Data Science, Data Analytics, Statistical Analysis, or similar
Thrive in an independent work environment
Detail-oriented, leave nothing to chance
Achieve goals consistently and efficiently
Hold yourself accountable for work completed
You're proficient with general reporting tools and languages. SQL is a must, and you also have experience with other tools like Excel, Python, or R.
Perks and benefits
Meaningful equity stake in the company
Flexible PTO
Work from home stipend
Medical, Dental, Vision, 401K and other benefits are also offered
About the Team
At DeepScribe, we value trust, teamwork, and transparency, and we're dedicated to promoting diversity and equity in the workforce through inclusive hiring practices. Candidates with backgrounds that are underrepresented in the technology industry are encouraged to apply.
In compliance with federal law, all persons hired will be required to verify identity and eligibility to work in the United States and to complete the required eligibility verification form upon hire."
Junior Data Scientist,Augray,"Remote in Brookfield, WI 53045",NaN,PostedPosted 30+ days ago,"$55,000 - $60,000 a year","Exposure to writing code (Python preferred, R and SQL okay), collaboration (Git), developing models (machine learning, boosting & bagging algorithms, &/or…",https://www.indeed.com/rc/clk?jk=3af02d93417e951c&fccid=2e2cd27fc703e613&vjs=3,"Brookfield, WI, USA
Summary:
Hiring Fresher to 1 year experience in Data Science, ML with python and strong analytical skills with a passion to take part in R&D.
About AugRay:
Augray is on a mission to build next generation method of communication using Extended Reality – XR (AR/ VR/ MR) technologies and change the way businesses re conducted and how interactions happen with people. In an age where innovation is happening all around us, there’s commonality – people are driving these changes. We offer a solution that helps to articulate product demonstration and how people conversation takes place using smartphones and wearable glasses.
We are a fast-growing tech start up and have grown to over 100 employees today, launched 3 products and customers across 3 continents including brands like CocaCola, Reliance, Caterpillar, Simpsons and more.
We’re a small and impactful team of engineers, artists, solution geeks continuously working to improve our product and our craft. We use modern, cutting-edge tech stack and love experimenting and patenting with new technologies to create our products and provide opportunities for them to continue to learn and grow into leaders and experts.
We are excited to find a person that has the passion, experience, and ability to own significant R&D tasks and product evolution working individually and or along with a team of virtual engineers.
About the Role:
Research isn’t just a buzzword to you In your role as a Data Science Associate, you will use AI, ML (Machine Learning) to deliver insightful and actionable intelligence and predictive solutions to our team to create innovative solutions for our products. You will gain experience working in AR (Augmented Reality), ML, NLP and developing data driven solutions to create algorithms while working closely with other team members of our Data Science and engineering team to deliver value to our product evolution. Aside from supporting our data science model creation and data teams, you'll also assist the product team with growth opportunities. You over-invest in the visual and interaction and a passion to solve challenges while creating innovative patentable approaches.
Required Skills:
Work with Product Managers and Engineers to dive deep into data and the user experience
Construct product metrics and statistical models to identify growth opportunities
Handle data annotation and data analysis requests from multiple stakeholders with high efficiency and quality in a fast-paced environment.
Help with the development of the annotation guidelines.
Analyze language data and evaluate trends and patterns.
Participate in an annotation tool testing and onboarding.
Track and report quality metrics and ensure delivery on all KPIs and SLAs agreed with stakeholders.
Maximize productivity, process efficiency and quality through streamlined workflows, process standardization, documentation, audits and investigations on a periodic basis.
Qualifications:
Bachelor’s or equivalent experience in Mathematics, Statistics, Econometrics, Computer Science, Electrical or Computer Engineering, or related field
1+ years’ of experience as data scientist, modeling in python or R
Bachelor/master’s degree students pursuing degrees in data science, statistics, applied math, computer science, engineering or other quantitative fields providing sufficient data science foundations
Exposure to writing code (Python preferred, R and SQL okay), collaboration (Git), developing models (machine learning, boosting & bagging algorithms, &/or regression techniques), and performing predictive analytics testing and evaluation (match case analysis, confidence intervals, experimental design, A/B testing, etc.).
A hunger to learn and work on challenging problems.
Location: Remote (work along with other remote engineers)
Compensation: 55K to 60K with benefits
Please contact: [email protected]
Immigration status: You should be a US Citizen or GC holder
Start Date: ASAP"
"Data Scientist, Analytics II #0000","Twitch Interactive, Inc.","Remote in San Francisco, CA 94104",3.5,PostedPosted 22 days ago,NaN,"1 year of experience using statistical computer language R, Python, or SQL to manipulate data and draw insights from large data sets.",https://www.indeed.com/rc/clk?jk=e81231b39cf512d0&fccid=fe2d21eef233e94a&vjs=3,"A Master’s degree or foreign equivalent in Computer Science, Engineering, Artificial Intelligence, Data Analytics, Statistics, Mathematics, or related field and 1 year of experience in a related occupation.
In the alternative, employer will accept a Bachelor’s degree or foreign equivalent in Computer Science, Engineering, Artificial Intelligence, Data Analytics, Statistics, Mathematics, or related field followed by 5 progressively responsible years of experience in a related occupation.
Experience must include:
1. 1 year of experience developing A/B testing frameworks.
2. 1 year of experience visualizing data using Tableau.
3. 1 year of experience using statistical computer language R, Python, or SQL to manipulate data and draw insights from large data sets.
4. 1 year of experience applying fundamental statistical principles to solve applied problems.
Telecommuting benefits available
#0000
Job summary
Employer: Twitch Interactive, Inc.
Position: Data Scientist, Analytics II
Location: San Francisco, CA
Multiple Positions Available
1. Transform data into actionable insights and take data-driven approach to drive business decisions.
2. Translate loosely-defined business problems into analytic terms by applying and adapting existing frameworks and solutions. Deliver artifacts in the form of analysis reports, spreadsheets, design specs (for data tracking or A/B experiments) and dashboards. Build solutions that scale wherever possible, and partner with engineers or other teams to deliver self-serve tools that automate repeatable analytic tasks.
3. Solve problems using appropriate assumptions and translate findings into actionable recommendation.
4. Assume responsibility for correct implementation and validate data, assumptions and results.
5. Communicate work clearly, and adapt messaging for both technical and nontechnical audiences.
6. Participate in team business reviews, design, scoping, and prioritization discussions.
7. Work effectively with customers and/or internal partners to understand business impacts and identify any opportunities/problems arising from the technical or business decisions.
8. Provide feedback and analytics guidance to more junior team members.
9. Telecommuting benefits available.
#0000
All applicants must meet all the above listed requirements.
#0000
Amazon is committed to a diverse and inclusive workplace. Amazon is an equal opportunity employer and does not discriminate on the basis of race, national origin, gender, gender identity, sexual orientation, protected veteran status, disability, age, or other legally protected status. For individuals with disabilities who would like to request an accommodation, please visit https://www.amazon.jobs/en/disability/us.
Pursuant to the San Francisco Fair Chance Ordinance, we will consider for employment qualified applicants with arrest and conviction records."
Senior Principal Data Scientist - Telecommute,UnitedHealth Group,"Remote in Minnetonka, MN 55345",3.6,PostedPosted 8 days ago,NaN,"Recruit, mentor and lead a team of applied research scientists and data scientists with continued focus on high performance and continual learning growth.",https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0C8O9VKdOj_1Zh75e9_CvYhSsWVxS1Pvi5WUWhsf4w7FIc3O6B0uG3ldAQAeoX1gorom5lWJslKkQGvDIzPw8CwzAwyQiGBN86IA6fmbqFicBARIgp5ZlkJhRTc-6guBEXH8Ho8SNomNufP-uJcHeQPFsB9JMqahHZFK_sMpIWFs0rWwNd4Jq5G4i_5g7OjCK11ZCzne19_qUluzWDhjlL70QLpMx7xIrm7kZgX5010adgq1prhDcJJ_RM55pYAtPv2YHVOtXGS9brXpZ87eosCeMplEwxiEnSSmaIfyJnUId2LkRKR-gGhro0peXEydNE5cVNedSKZtTftxNOaLcB0Gj5vltTU58NjJzonA7UFxdul65ZIEsib6rNtDJEgbX-RZ_rQFLc7IT0XmMdS0HdLH6_lepDogbMEqFCIgt7j9Q==&xkcb=SoDf-_M3WJmDXJ2ach0JbzkdCdPP&p=4&fvj=0&vjs=3,"Combine two of the fastest-growing fields on the planet with a culture of performance, collaboration and opportunity and this is what you get. Leading edge technology in an industry that's improving the lives of millions. Here, innovation isn't about another gadget, it's about making health care data available wherever and whenever people need it, safely and reliably. There's no room for error. Join us and start doing your life's best work.(sm)
Optum Labs is the research and development arm of UnitedHealth Group. We're a diverse team of curious thinkers and experts in big data, artificial intelligence and machine learning, and scientific and clinical research searching for new ways to help people live healthier lives. We partner with world leaders in health care delivery, research, and technology to create disruptive solutions that serve patients, caregivers, providers, and commercial and government payers.
More equitable, effective, and affordable health care - that's our goal. We aren't just trying to improve the care an individual receives. We're building a future where the health care system works better for everyone.
Our team at Optum Labs is seeking a Principal Scientist ML with expertise and experience in in applying machine learning to use-cases (e.g., healthcare) with high-stakes consequences. This is an individual contributor role responsible for conducting research and development of advanced, high-impact machine learning techniques for various healthcare use cases. This role provides an unprecedented opportunity to leverage large-scale proprietary healthcare datasets, internal team of subject matter experts and cutting-edge computing cloud infrastructure to craft innovative machine learning problems to challenging and high-impact healthcare problems.
You’ll enjoy the flexibility to telecommute* from anywhere within the U.S. as you take on some tough challenges.
Primary Responsibilities:
Conduct research into machine learning methods for use cases such as disease early-onset and progression modeling (including uncertainty quantification), population health risk identification and patient intent/experience prediction – potential techniques could be regression, classification, sequence modeling, time-series methods, anomaly detection, clustering/segmentation etc.
Develop and expand a fledgling applied research program with focus on prioritizing impact-focused initiatives, rapid prototyping and obsession with converting applied research into software
Manage and optimize a research lifecycle management program with focus on framework-driven idea curation, prioritization, milestone definition and commercialization-driven measurement
Be a hands-on leader and mentor by example by building prototypes/Pocs using variety of predictive methods (ML, DL, Probabilistic methods, time-series/spatial methods)
Lead deep-dive meetings with business stakeholders, data experts, software/platform engineering, clinicians to scope R&D use-cases and convert them into scope of work
Develop, justify, and execute key Applied R&D programs that advance key Optum Labs analytics and data capabilities.
Recruit, mentor and lead a team of applied research scientists and data scientists with continued focus on high performance and continual learning growth.
Self-drive knowledge accumulation of methods and modeling advances by reading research publications, blogs and attending presentations and webinars and sharing it with the internal teams
You’ll be rewarded and recognized for your performance in an environment that will challenge you and give you clear direction on what it takes to succeed in your role as well as provide development for other roles you may be interested in.
Required Qualifications:
Master’s degree in Engineering, Mathematics or computer science
10+ years of solid experience in scientific programming via a combination of languages such as Python, R, Julia, Matlab, C++ - (we mainly are looking for a level where the candidate understands difference between good and bad code, script and program, knowing when to use what etc.)
7+ years of experience designing and implementing predictive or experimental research (e.g. forecasting, survey design, simulation, observational, statistical preferably at scale) using multiple kinds of predictive (ML, statistical) methods
7+ years of relevant applied research thought in healthcare, energy, industrial AI, aerospace or other high-stakes domains (direct experience in a cloud environment is highly valued)
Experience distilling concepts into frameworks and converting approaches into scalable tools
Experience digesting and evaluating evidence from interdisciplinary literature
Experience presenting via written and verbal mediums to a variety of audiences
Preferred Qualifications:
PhD in Engineering, Mathematics or Computer Science
Experience with one or many of these topics such in customer churn, intent prediction, disease/damage progression, anomaly detection, sequence-based models, time-series forecasting or time to event modeling in the population health domain
Experience in deploying machine learning models in a production setting (logging, monitoring, alerts) in a cloud environment
Exposure to extracting and manipulating data via tool/libraries/forms such as Spark, pandas, scikit family, numpy/scipy, matplotlib, streamlit
Demonstrable ability for or experience with designing applied research initiatives with a underlying focus on quantifiable value generation for business via software implementations.
Proven record of publishing applied research on predictive methods in academic journals of your field (should be listed on resume or added as an attachment when applying)
Ability to work collaboratively in a matrixed environment to deliver multi-phased work.
Full COVID-19 vaccination is an essential job function of this role. Candidates located in states that mandate COVID-19 booster doses must also comply with those state requirements. UnitedHealth Group will adhere to all federal, state and local regulations as well as all client requirements and will obtain necessary proof of vaccination, and boosters when applicable, prior to employment to ensure compliance. Candidates must be able to perform all essential job functions with or without reasonable accommodation.
We Lead with Diversity, Inclusion and Compassion
At Optum Labs, we are dedicated to building teams where every individual is recognized for their unique experience and contributions. Our Leadership Principles underscore our commitment to inclusion, encouraging us to “walk in each other’s shoes” and open doors for our peers.
UnitedHealth Group supports local, regional, and national organizations that share these values through joint initiatives, event and program participation, volunteerism and giving. Through our Connected Communities, employees can connect with others who have similar – or different – life experiences and backgrounds. These groups are led by peers, supported by Human Capital, and championed by leaders.
We Invest in Talent
Managers at every level are committed to their roles as talent stewards who help guide and nurture professional development. We want our employees to reach their highest level of potential just as they help us reach ours.
To protect the health and safety of our workforce, patients and communities we serve, UnitedHealth Group and its affiliate companies require all employees to disclose COVID-19 vaccination status prior to beginning employment. In addition, some roles and locations require full COVID-19 vaccination, including boosters, as an essential job function. UnitedHealth Group adheres to all federal, state and local COVID-19 vaccination regulations as well as all client COVID-19 vaccination requirements and will obtain the necessary information from candidates prior to employment to ensure compliance. Candidates must be able to perform all essential job functions with or without reasonable accommodation. Failure to meet the vaccination requirement may result in rescission of an employment offer or termination of employment
Careers with Optum. Here's the idea. We built an entire organization around one giant objective; make health care work better for everyone. So when it comes to how we use the world's large accumulation of health-related information, or guide health and lifestyle choices or manage pharmacy benefits for millions, our first goal is to leap beyond the status quo and uncover new ways to serve. Optum, part of the UnitedHealth Group family of businesses, brings together some of the greatest minds and most advanced ideas on where health care has to go in order to reach its fullest potential. For you, that means working on high performance teams against sophisticated challenges that matter. Optum, incredible ideas in one incredible company and a singular opportunity to do your life's best work.(sm)
All Telecommuters will be required to adhere to UnitedHealth Group’s Telecommuter Policy.
Colorado, Connecticut or Nevada Residents Only: The salary range for Colorado/Connecticut/Nevada residents is $113,500 to $218,100. Pay is based on several factors including but not limited to education, work experience, certifications, etc. In addition to your salary, UnitedHealth Group offers benefits such as, a comprehensive benefits package, incentive and recognition programs, equity stock purchase and 401k contribution (all benefits are subject to eligibility requirements). No matter where or when you begin a career with UnitedHealth Group, you’ll find a far-reaching choice of benefits and incentives.
Diversity creates a healthier atmosphere: UnitedHealth Group is an Equal Employment Opportunity/Affirmative Action employer and all qualified applicants will receive consideration for employment without regard to race, color, religion, sex, age, national origin, protected veteran status, disability status, sexual orientation, gender identity or expression, marital status, genetic information, or any other characteristic protected by law.
UnitedHealth Group is a drug - free workplace. Candidates are required to pass a drug test before beginning employment."
"Data Scientist, Baseball Research & Development",Cleveland Guardians - Baseball Operations,"Remote in Cleveland, OH",NaN,PostedPosted 30+ days ago,NaN,"The Cleveland Guardians Baseball Research & Development (R&D) group is seeking data scientists at a variety of experience levels, including senior, entry-level,…",https://www.indeed.com/rc/clk?jk=4e36abb4c8802708&fccid=dd616958bd9ddc12&vjs=3,"Primary Purpose
The Cleveland Guardians Baseball Research & Development (R&D) group is seeking data scientists at a variety of experience levels, including senior, entry-level, and interns/fellows. Prior experience with sports is not necessary if you have some curiosity or interest in learning about data science applications in baseball.
If you enjoy tackling challenging problems, using interesting real data, collaborating with smart people, and having a direct impact on what happens on the baseball field and in our business, this may be the opportunity for you!
People in this role will use statistical and machine learning techniques to better understand and quantify the game of baseball. You will analyze video, player tracking, and biomechanics data as well as traditional baseball data sources like box scores to help us acquire and develop baseball players into a championship-caliber team. You will work alongside the rest of the R&D, data engineering, and IT groups, and interact with coaches, scouts, and executives from across the organization.
The Cleveland Guardians prefer our employees (or teammates) reside in Cleveland, Ohio, but we will consider and discuss the possibility of remote work. We can also be flexible on start dates.
If you meet some of the qualifications below, we encourage you to apply or reach out for more information. We know that historically marginalized groups – including people of color, women, people from working class backgrounds, and people who identify as LGBTQ – are less likely to apply unless and until they meet every requirement for a job. We encourage you to reach out if you have questions about the role or your qualifications. We are happy to help you feel ready to apply!
Responsibilities
Design, build, test, and deploy statistical and/or machine learning models to support all facets of baseball operations, including scouting, player development, and the major league team.
Effectively communicate actionable insights to key stakeholders across the organization.
Using data to visualize model outputs and important baseball concepts.
Qualifications
Demonstrated experience or advanced degree in a quantitative field such as Statistics, Computer Science, Economics, Machine Learning, or Operations Research.
Programming skills in a language such as R or Python to work efficiently at scale with large data sets.
Desire to continue learning about data science applications in baseball.
Preferred Experience
We are looking for a variety of skill sets. If you have demonstrated experience with one or more of the following, you may be who we are looking for.
Demonstrated research experience in a sports context (baseball is a plus).
Experience with a database language such as SQL.
Experience with computer vision.
Experience working with spatiotemporal data.
Experience working with high-dimensional time series data.
Experience with deep learning frameworks such as TensorFlow or Torch.
Experience with Bayesian statistics and languages such as Stan.
Standard Requirements
All applicants for employment with the Cleveland Guardians will need to comply with the Cleveland Guardian Vaccination Policy as a condition of employment. Potential candidates for employment will be notified of the requirements of this policy prior to the start of employment.
Represent the Cleveland Guardians in a positive fashion to all business partners and the general public.
Ability to develop and maintain successful working relationship with members of the Front Office.
Ability to act according to the organizational values and service excellence at all times.
Ability to work with multicultural populations and have a commitment to fairness and equality.
Ability to work in a diverse and changing environment.
About Us
Our teammates are at the core of what we believe in: People, Collaboration, Learning, and Excellence (PeopleCLE). We look to hire individuals who are committed to our purpose of uniting and inspiring our city with the power of team. Our mission is to win the World Series while creating a compelling fan experience.
We believe that we will achieve our goals by making evidence and model-based decisions and creating environments that support our people and empower them to continuously learn. This role might be for you if you are looking to join a team that works together to learn new ways to make model-based decisions that lead to excellent outcomes.
We also pride ourselves on creating an attractive work environment highlighted by a healthy work-life balance, exceptional benefits such as health, vision, and dental coverage, and competitive 401k plan with employer contribution and match.
Our Hiring Process
A short, three question questionnaire to help us get to know you better than we do from just your application. No coding involved.
Two approximately 30-minute phone calls.
A longer take-home questionnaire to help us learn how you think through problems. No coding or project involved.
A final round of interviews with our R&D department as well as teammates across Baseball Operations."
Sr. Technical Data Analyst - Remote,UnitedHealth Group,"Remote in Minneapolis, MN 55431",3.6,PostedToday,NaN,"Collaborate with data engineers on data pipeline development to ensure detailed documentation, inclusion of data quality checks to support the data definitions.",https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0C8O9VKdOj_1Zh75e9_CvYhSsWVxS1Pvi5WUWhsf4w7FMAvYeXKDPN-nfF3PqegTJXVBQHlfUc7bElZgACvUaa5gYs4cJ_Bh3h8O7fZxRJVVgGukAlM1s_PP2Htleb685ez9A-Q1Gt5mPbgF-jDPOy6NnetkKiZPvnOTWYu79VC375HBgLU8JrESICF8rxkrfjFJsn3ETO_i4q_OGAkYtF5dAZdYzWNgA9R4T1g2-DdaQXhzTbjw0PjN_Uzp8KtAtM1Klf1eTb0b3uL5si7Oja9Hw-0cM5d4_fqQvZseRKWYsj-fk9b3qlFH3siHsccMaReOd51T0VHPMaMgIPnRSMdeCar3PXWl4tLp2-6cNrAlpb0YmrMZRtww-BxLYcDbMEzYx--IlzhQvLLdu0BF2MHnvtU9y6A_B3ucjRiZCdJFA==&xkcb=SoDl-_M3WJmDXJ2ach0PbzkdCdPP&p=6&fvj=0&vjs=3,"At UnitedHealthcare, we’re simplifying the health care experience, creating healthier communities and removing barriers to quality care. The work you do here impacts the lives of millions of people for the better. Come build the health care system of tomorrow, making it more responsive, affordable and equitable. Ready to make a difference? Join us and start doing your life's best work.(sm)
Surest™, A UnitedHealthcare Company, (formerly Bind) provides a new approach to health benefits designed to make it easier and more affordable for people to access health care services. Our innovative company is part tech start-up, part ground-breaking service delivery-changing the way benefits serve customers and consumers to deliver meaningful results and better outcomes (and we have just begun). We understand our members and employers alike desire a user-friendly, intuitive experience that puts people in control when it comes to the choices they make and the costs they pay for medical care, and we are seeking team members to continue to advance our vision. By harnessing data and technology, Surest plans are designed to better meet the health and financial needs of all Americans. At Surest, we pride ourselves in our ability to make a difference, and with the backing of our parent company, UnitedHealthcare, we can operate in the best of both worlds-the culture and pace of an innovative start-up with big company support and stability. Come join the Surest team and help us design and deliver a cutting-edge health benefit that changes the face of healthcare.
Summary
Seeking technical Data Analyst to collaborate in researching, documenting, designing, qualifying data throughout the Surest data platform
Position includes the technical analysts building their capability to develop and deploy data engineering processing pipelines
Position includes working with employer, medical/pharmacy claims, benefit, reference, and provider data as well as understanding the processes and flow of data throughout the platform. Surest is looking for a Healthcare Data Analyst who can work within a team to understand business needs and priorities, and develop corresponding requirements and document scenarios, develop, design, and implement ETL processing jobs, validate proposed and coded solutions
Focus, attention to detail, enthusiasm, and a dedication to excellence are all personal characteristics highly valued in the Surest organization
You’ll enjoy the flexibility to work remotely* from anywhere within the U.S. as you take on some tough challenges.
Primary Responsibilities:
Review vendor/partner data and Surest capabilities to create data definitions, transformation logic, and data organization options based on business requirements
Analyze and document new and existing data interfaces within the Surest data platform
Contribute to the data processing design and development process, providing inputs based on completed analysis and data mappings
involvement in developing and deploying data processing pipelines
Collaborate with product owners, other analysts, and vendors to document complex business requests throughout the Surest platform
Translate data analysis and business logic into documentation that can be understood by broad audiences
Analyze Surest healthcare data to elicit patterns in the data that can be communicated to data engineers to optimize the processing and storage of the data
Data analysis in support of the data pipeline source-to-target mappings, ETL system designs, and data testing
Collaborate with data engineers on data pipeline development to ensure detailed documentation, inclusion of data quality checks to support the data definitions
Analysis providing detailed insights into new and existing data requests to support new requirements definitions and data pipeline development
Partner with developers and testers in an Agile Scrum framework to communicate, refine, and validate requirements and solutions
Participate in user acceptance testing to validate those solutions meet requirements
You’ll be rewarded and recognized for your performance in an environment that will challenge you and give you clear direction on what it takes to succeed in your role as well as provide development for other roles you may be interested in.
Required Qualifications:
3+ years of experience writing complex SQL for the purposes of data analysis and discovery
3+ years of experience creating technical analysis including documentation and communication with technical engineers and data customers
3+ years of experience writing stories for software developers
Preferred Qualifications:
Experience analyzing health plan data (Enrollment, Claims, etc.)
Experience developing in Python, Spark framework or some other programming language
Experience working with Databricks
Experience with Transactional and Data Lake data stores
Experience working in highly matrixed, sometimes ambiguous, complex environments with multiple stakeholders
Experience attending and participating in scrum agile ceremonies
Experience identifying process improvements and implementing processes related to data pipeline effectiveness and efficiency
History tracking down stakeholders and subject matter experts to gather requirements and communicate existing state development
Clear, concise communication skills with solid ability to translate technical jargon into business understandings
Careers at UnitedHealthcare Employer & Individual. We all want to make a difference with the work we do. Sometimes we're presented with an opportunity to make a difference on a scale we couldn't imagine. Here, you get that opportunity every day. As a member of one of our elite teams, you'll provide the ideas and solutions that help nearly 25 million customers live healthier lives. You'll help write the next chapter in the history of health care. And you'll find a wealth of open doors and career paths that will take you as far as you want to go. Go further. This is your life's best work.(sm)
Colorado, Connecticut, Nevada, or New York City Residents Only: The salary range for Colorado residents is $82,100 to $146,900. The salary range for Connecticut/Nevada/New York City residents is $90,500 to $161,600. Pay is based on several factors including but not limited to education, work experience, certifications, etc. In addition to your salary, UnitedHealth Group offers benefits such as, a comprehensive benefits package, incentive and recognition programs, equity stock purchase and 401k contribution (all benefits are subject to eligibility requirements). No matter where or when you begin a career with UnitedHealth Group, you’ll find a far-reaching choice of benefits and incentives.
All employees working remotely will be required to adhere to UnitedHealth Group’s Telecommuter Policy
Diversity creates a healthier atmosphere: UnitedHealth Group is an Equal Employment Opportunity/Affirmative Action employer and all qualified applicants will receive consideration for employment without regard to race, color, religion, sex, age, national origin, protected veteran status, disability status, sexual orientation, gender identity or expression, marital status, genetic information, or any other characteristic protected by law.
UnitedHealth Group is a drug - free workplace. Candidates are required to pass a drug test before beginning employment."
Jr. Data Scientist,Net2Aspire,Remote,NaN,EmployerActive 2 days ago,"$65,000 - $80,000 a year", Create data dashboards and other data visualization tools to track progress to inform continuous quality improvement of the Congregate Settings Investigation…,https://www.indeed.com/company/net2aspire/jobs/Junior-Data-Scientist-41ce767aa007133d?fccid=268145626d239938&vjs=3," Apply Statistical and Machine Learning methods to specific business problems and data.
Ensure data quality throughout all stages of acquisition and processing, including such areas as data sourcing/collection, ground truth generation, normalization, transformation, cross-lingual alignment/mapping, etc.
Using tools such as Tableau, Looker and GoogleData Studio to aggregate data from across our software tools to build and develop dashboards for both client-facing and internal purposes across the company that feature relevant KPIs and metrics
Create data dashboards and other data visualization tools to track progress to inform continuous quality improvement of the Congregate Settings Investigation and Response Unit.
Design, develop, evaluate, and release highly innovative models elevate the customer experience and track impact over time
Job Types: Full-time, Part-time, Contract
Salary: $65,000.00 - $80,000.00 per year
Benefits:
401(k)
Health insurance
Schedule:
8 hour shift
Monday to Friday
Experience:
Data science: 1 year (Required)
Machine learning: 1 year (Required)
Work Location: Remote"
Remote Senior Data Scientist NLP,First American Financial Corporation,"Remote in Santa Ana, CA 92799",3.8,PostedPosted 5 days ago,NaN,"Proactively research, prototype and present ideas to senior management in areas of machine learning, deep learning and computer vision that are directly…",https://www.indeed.com/pagead/clk?mo=r&ad=-6NYlbfkN0D_rOR36Gvk_CJq-cXVMk_EfLL3YILv7-o1rmNyHeomS3LSjiduIbZPUwXCp1KgM8oRV5gJ_qg6R_jpWZRQ5icYhHjSTyMIIy-HiQrbQouSg9Gn9Lq4KFOOCMdDnymunvcTwYH_cifwR-9RnDxGdsLmkmul4p7EQAKzwQ_ftoL-0O3tc2MsQVnYemhF7kVp0eXV4C6wGDX1HHrUo3JStE5uCcDg-_GclTvX8630hpgBgfN-vf2uOfCuFogJNwvQNsaIRRXA6KxOCy3rR2_uoU2aek76NJKVQjpm8aqBPBiX_ShhT93SPIv_iaHL8XKYlvzsW4sEIqayh4KbY1SYAq7z4-CioADhLVYCgX5Ae5b02Y3CSXUpITDVsTDLwUNEG8LdTe9c8YroqjWYw1bT9q-TwvZnPal14yqgK1IC21J6gA==&xkcb=SoB4-_M3WJmDXIWach0LbzkdCdPP&p=8&fvj=0&vjs=3,"Company Summary
Join a team that puts its People First! As a member of First American’s family of companies, Data & Analytics is a national provider of property-centric information, analytics, risk management and valuation solutions. First American maintains and curates the industry’s largest property and ownership dataset with over 7 billion document images. Our major platforms and products include: DataTree®, FraudGuard®, RegsData™, TaxSource™ and ACI®. The First American Data & Analytics division boasts more than 20 patents and remains at the forefront of innovation - leveraging technology and data to deliver best-in-class decisioning solutions. Fueled by our industry-leading data and using our technology and proprietary process, our solutions provide lenders, real estate and title companies with actionable insights - enabling them to make better, increasingly automated, decisions. With offices in all major metropolitan areas, including California and New York, DNA teams work collaboratively from across the country. Since 1889, First American (NYSE: FAF) has held an unwavering belief in its people. They are passionate about what they do, and we are equally passionate about fostering an environment where all feel welcome, supported, and empowered to be innovative and reach their full potential. Our inclusive, people-first culture has earned our company numerous accolades, including being named to the Fortune 100 Best Companies to Work For® list for seven consecutive years. We have also earned awards as a best place to work for women, diversity and LGBTQ+ employees, and have been included on more than 50 regional best places to work lists. First American will always strive to be a great place to work, for all. For more information, please visit www.careers.firstam.com.
Job Summary
Remote Candidates Welcome!!
We have an exciting role for a Data Scientist to help build and solve some of the most unique, interesting and challenging questions related to Natural language processing (NLP) utilizing a variety of Machine learning and deep learning techniques within Artificial Intelligence. The role will present opportunities to work on large datasets and the ability to use innovative techniques in Artificial Intelligence ranging from various NLP methods, computer vision, and deep learning to enable solutions that will be directly impactful to our customers. The solutions that you will POC, obtain feedback, quickly turnaround, iterate, story tell and integrate the model in a production pipeline will be a key success criterion for this position. You will completely own and manage the solution and collaborate with key product groups to provide innovative ideas and solution that are impactful and add immediate value.
Responsibilities
Use consultative approach to understand business problems and build solutions in an iterative manner.
Works with product teams to identify opportunities for Machine learning Deep learning and computer vision models to enable key success criteria.
Perform end to end activities within the data science life cycle from business problem understanding, exploratory data analysis, feature engineering, model training, model evaluation, visualization and deployment.
Within an NLP problem able to design and implement all components of the solution starting from understanding the data set, document balance, modern tokenization techniques and utilize deep learning models and tune model parameters to achieve optimal model scores.
Utilize Machine learning to identify pattern and anomaly in data sets.
Proactively research, prototype and present ideas to senior management in areas of machine learning, deep learning and computer vision that are directly beneficial and impactful to business use cases.
Participate and mature the data science framework with industry leading tools like Azure ML best practices and community of learning.
Knowledge and Skills/Technology Used
Experience with state-of-the-art techniques within NLP and utilized transformer based models and tokenization schemes for NLP tasks.
NLP project experience using pytorch, tensorflow, FASTai, spacy, huggingface transformers models.
Coding experience with several languages like Java Script, Python,, etc.,
Very good experience of querying databases (SQL)
Typical Education
Bachelor’s degree or equivalent in a related quantitative field such as Mathematics, Statistics or Computer Science
Master’s or PhD degree preferred
Typical Range of Experience
5-7 years of related work experience building predictive and descriptive statistical models
#DNAIT
#LI-CG2