forked from indrakumarprajapat/tvarit.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
career.php
999 lines (894 loc) · 62.6 KB
/
career.php
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="js/navigationDE.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-143837547-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-143837547-1');
</script>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="site" content="tvarit.com" />
<meta name="keywords"
content="SPS – Smart Production Solutions, Nuremberg, NürnbergMesse, Components, Control Technology, Drive Systems, Electromechanical Components, Human-Machine-Interface Devices, Industrial Communication, Industrial Software, Interface Technology, IPCs, Motion Control, Peripheral Equipment, Sensor Technology, " />
<meta name="description"
content="Tvarit AI is the best solution for smart manufacturing, smart machines and digital transformation" />
<meta name="keywords"
content="machine learning, free, no credit card, big data, machine learning, ml, machine learning as a service, machine learning API, API, datasets, models, decision trees, predictive models, predictions, fast predictions, evaluation, evaluate predictive models, ensembles, random decision forest, boosted trees, gradient boosted trees, gradient boosting, boosting ensembles, isolation forest, anomaly detector, anomaly score, clustering, k-means, g-means, cluster, centroids, linear regression, regression, logistic regression, lr, topic, topic modeling, topic distributions, PCA, principal component analysis, text analysis, LDA, Latent Dirichlet Allocation, partial dependence plot, scatter plot, time series forecasting, timeseries, forecast, trends, deepnets, deep learning, deep neural networks, neural network, neural networks, automl, automatic optimization, optiml, fusion, easy, model gallery, workflows, flatline, whizzml, dsl, domain-specific language, bindings, library, amazon echo, alexa, mac, desktop" />
<!-- Favicons -->
<link rel="apple-touch-icon" href="./assets/img/kit/free/apple-icon.png">
<link rel="icon" href="./img/favicon.png">
<title>Career</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/flickity.css">
<link rel="stylesheet" href="css/animate.css">
<link
href="https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300i,400,400i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<script type="text/javascript" src="https://secure.perk0mean.com/js/173652.js"></script>
<noscript><img alt="" src="https://secure.perk0mean.com/173652.png" style="display:none;" /></noscript>
<!------------------------ main menu start ---------------------->
<?php
include 'header.php';
?>
<!------------------------ main menu end ------------------------>
<!------------------------ header start ------------------------->
<header class="headerBg careerBg">
<div class="container">
<a href="#downClick" class="hdrscrollArrow"><i class="icon ion-ios-arrow-dropdown"></i></a>
<div class="row align-items-center">
<div class="col-md-6">
<div class="typography">
<div class="text-1">
Let's make your
</div>
<div class="text-big60">
Career
</div>
<br>
<div class="more">
<p class="text-p">
A team is the cog which completes the circle of our 3 Ts. We're a diverse set of
individuals associating to design the wheel which will lead the change. We are not an
organization, we are an organism - Alive and kicking, Changing form, Breeding concepts,
Spreading happiness, Setting up special units for special requirements. Partnering with
those who wish to do things uniquely.
</p>
</div>
</div>
</div>
</div>
</div>
</header>
<!------------------------ header end --------------------------->
<!------------------------ Automotives start --------------------->
<div class="section-padding" id="downClick">
<div class="container">
<div class="centerTitle text-big60">
Current Opening <span class="red fw-900">Position</span>
</div>
<br>
<div id="accordion">
<!-- <div class="card">
<div class="card-header" id="headingFour">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdnTechArc"
aria-expanded="false" aria-controls="acccrdnTechArc">
Technical Architect
</a>
</div>
<div id="acccrdnTechArc" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
We’re looking for a Technical Architect who will take a key role on our team. Our
Technical Architect must have knowledge in all stages of software development. You’ll be
working alongside other engineers and developers, collaborating on the various layers of
the infrastructure for our AI product.<br>
As of now, we are using Grafana open-source utility for our frontend, so your task would
be to write Grafana source code transformation code. About 80% of your work would be on
backend, API and Microservices Development, maintaining the releases, code reviews. You
will be modernizing application infrastructure and improving delivery effectiveness by
building integration-centric solutions (service-oriented architectures). You will work
closely within an agile, scrum-based team to understand the business domain and client
requirements.<br>
Our AI team has created an AI software for manufacturing industry where it predicts
machine, process or plant failures at various levels in the timeframe. Your main goal
will be to create the REST API layer so that our customers can inject the input data and
receive the predicted results back seamlessly in real-time.
<br>
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li>Ensure the quality of architecture and design of systems.</li>
<li>Functionally decompose complex problems into simple, straight-forward solutions.</li>
<li>Fully and completely understand system interdependencies and limitations.</li>
<li>Design Technical/Integration Architecture, including development, runtime and operation architectures of REST API.</li>
<li>Experience with cloud message APIs and usage of push notifications. </li>
<li> Data pipeline integration with the AI backend, your server and REST API shall be able to manage the continuous flow of data between this AI backend and customer’s database systems.</li>
<li>Analyze metrics and measure the effectiveness of the web application and servers, by setting up an effective logging system.</li>
</ul>
<br>
<h4>Your background:</h4>
<ul class="ul-list">
<li>Strong experience in architecting and building multi-threaded, distributed systems.</li>
<li>An experienced full stack developer with extensive experiences in any backend server-side language like Python, Golang etc and frontend languages typescript and javascript.</li>
<li>Having knowledge of Apache, NGINX, SOLR, Redis, shell scripting, and on a variety of platforms, including Unix/Linux, in physical, virtualized and cloud (Amazon/AWS) environments.</li>
<li>Experience with RDBMSs like SQL, MySQL, PostgreSQL; and/or time-series DBMS like Elastic Search, InfluxDB, TimescaleDB, SiriDB etc.</li>
<li>Be very comfortable with SOAP (XML) and RESTful interfaces (JSON), both for creating outgoing responses and incoming consumption of data from external sources.</li>
<li>Solid understanding of scripting, programming and testing methodologies.</li>
<li>Ability to operate in a team and individually as well as be self-driven with an unwavering commitment to meet deadlines while delivering a high-quality product.</li>
<li>Computer Science degree preferred.</li>
</ul>
<br>
<h4>Good to have:</h4>
<ul class="ul-list">
<li>Knowledge about Golang, Service Oriented Architecture (SOA) patterns, automating business process models, API enabled gateway and multi/hybrid cloud-based services.</li>
</ul>
<br>
<h4>Our Team Culture:</h4>
<ul class="ul-list">
<li>We provide hands-on statistical solutions for the automotive and manufacturing industry in Germany to highlight trends and generate insights.</li>
<li>We have closely worked with Deutsche Bahn, Linde, Liebherr creating AI for machines health and work closely with their backend databases and data teams.</li>
<li>We act as the primary point of contact for business forecasting, delivering metrics/analytics that drives the organization and helps senior management taking data-driven business decisions.</li>
</ul>
<hr>
<p class="red">To apply, please send an email, including your resume as an attachment, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Mumbai</p>
</div>
</div>
</div> -->
<div class="card">
<div class="card-header" id="headingFour">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdnSaleMang"
aria-expanded="false" aria-controls="acccrdnSaleMang">
Sales Manager - Full-Time
</a>
</div>
<div id="acccrdnSaleMang" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
Tvarit GmbH is a rising German startup in the field of Industrial AI. Awarded in top 16
out of 490 AI companies from EU, Tvarit brings a robust and state-of-the-art Industrial
Ai Solutions for German Manufacturing and Automobile companies. With techies from strong
R&D background and universities such as TU Darmstadt, Stanford, NASA etc, Tvarit is on a
voyage to become next unicorn.<br>
Our software’s end objective is to achieve efficient processes management for factories
and plants, increasing the yield, increasing the accuracy and reliability by bringing
data-driven decisions, shorten the time frame of delivery, and hence direct reflection
in terms of profit to the enterprise.<br>
You will be responsible for creating and improving the communication with customers,
market position of the organization and achieve financial growth. You will be involved
in defining long-term organizational strategic goals, building key customer
relationships etc.<br>
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li><b>Sales Targets:</b> Achieving growth and hitting sales targets by successfully
managing the sales team. Designing and implementing a strategic sales plan that
expands the company's customer base and ensures it’s strong presence by visiting
exhibitions and other sales events.</li>
<li><b>Work with manufacturing clients:</b> Understanding various problems and business
use cases such as failures prediction in machinery/plant, forecasting the number of
defective items coming from a production facility</li>
<li><b>Meetings and Pitches to the CXOs:</b> Set up meetings between client decision
makers and company’s leaders/Principals. Plan approaches and pitches. Work with team
to develop proposals that speak to the client’s needs, concerns, and objectives.
</li>
<li><b>Cost-Benefit Analysis: </b> Participate in pricing the solution/service. Handle
objections by clarifying, emphasizing agreements and working through differences to
a positive conclusion. Use a variety of styles to persuade or negotiate
appropriately. Present an image that mirrors that of the client.</li>
<li>Create feedback channel between customer and engineering team </li>
<li> Collaborate well with other professionals in the design team </li>
<li>Marketing one’s services effectively to attract additional clients</li>
</ul>
<br>
<h4>ROLE REQUIREMENTS:</h4>
<ul class="ul-list">
<li>We are looking for a self-motivated individual with a positive can-do attitude and
excellent verbal & written communication skills in German and English
</li>
</ul>
<br>
<h4>Required skills:</h4>
<ul class="ul-list">
<li>Bachelor or master’s degree in Business Administration specializing in Sales &
Marketing, Business Informatics, Economics, or similar</li>
<li>Multiple years of experience with sales and marketing
</li>
<li>Experience working with Manufacturing companies especially in German-speaking region
</li>
<li>Experience with end to end sales process (Initial contact → POC → Deal Completion →
Delivery & feedback)</li>
<li> Experience creating appropriate sales and marketing content and material. </li>
<li> Flexible with travelling </li>
</ul>
<br>
<h4>Preferred skills:</h4>
<ul class="ul-list">
<li>Domain Knowledge of AI in the manufacturing industry is a great plus</li>
<li>Working Knowledge of Industry used ERP solutions e.g. SAP S4Hana, SAP ERP, etc</li>
<li>Working knowledge of MS office tools</li>
<li>Working knowledge with CRM solutions like Zoho CRM, Salesforce CRM</li>
</ul>
<br>
<h4>Work Experience:</h4>
<ul class="ul-list">
<li>3+ years of experience in marketing and sales </li>
</ul>
<h4>What do we offer:</h4>
<ul class="ul-list">
<li>Vibrant team culture</li>
<li>Attractive salary and target incentives</li>
<li>Flexible and Dynamic Work Environment to enhance the creativity</li>
<li>Flexible Working Hours</li>
<li>Options for further personal development</li>
<li>Full flexibility to bring your creative ideas in productive use</li>
</ul>
<br>
<h4>Our Team Culture:</h4>
<ul class="ul-list">
<li>We provide start-of-the-art hands-on statistical solutions for the automotive and
manufacturing industry in Germany to highlight trends and generate insights</li>
<li>We have closely worked with Fortune 500 Manufacturing Firms creating AI for machines
health, predicting defective pieces and recognizing weak areas hence increasing the
efficiency and yield</li>
<li>We act as the primary point of contact for business forecasting, delivering
metrics/analytics that drives the organization and helps senior management taking
data-driven business decisions</li>
</ul>
<hr>
<p class="red">To apply, please send a cover letter and CV, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Frankfurt am Main</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdn4"
aria-expanded="false" aria-controls="acccrdn4">
Business Development Manager - Praktikum Werkstudent (3-6 Monate)
</a>
</div>
<div id="acccrdn4" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
Tvarit GmbH ist bestrebt, Unternehmen in der Herstellungsbranche zur Transformation in
die Industrie 4.0
mit der Nutzung seiner einzigartigen KI-Software zu helfen.
Die von uns entwickelte KI-Software ist die modernste Komplettlösung, um viele
Geschäftsprobleme unserer
Kunden zu lösen.
Du bist verantwortlich für den Aufbau und die Verbesserung der Marktposition des
Unternehmens und für
das finanzielle Wachstum. Du wirst an der Definition langfristiger strategischer
Unternehmensziele, dem
Aufbau wichtiger Kundenbeziehungen, der Identifizierung von Geschäftsmöglichkeiten, der
Verhandlung
und dem Abschluss von Geschäftsabschlüssen sowie der umfassenden Kenntnis der aktuellen
Marktbedingungen beteiligt sein. Du solltest eine starke Wachstumsdenkensweise und eine
starke
Arbeitsmoral mitbringen.
</p>
<h4>Deine Aufgaben:</h4>
<ul class="ul-list">
<li>Arbeiten mit Kunden aus der Fertigungsindustrie: Verständnis verschiedener Probleme
und
Geschäftsanwendungen</li>
<li>Vergrößerung des Kundenstamms durch den Besuch von Messen/Events und Teilnahme an
Technologie
-Gipfeln und Wettbewerben</li>
<li>Besprechungen und Präsentationen zu den CXOs: Treffen zwischen den
Entscheidungsträgern der Kunden
und den Geschäftsführern/Verantwortlichen des Unternehmens</li>
<li>Verantwortung für Social-Media Marketing in beispielsweise LinkedIn, Youtube XING
etc.
</li>
</ul>
<br>
<h4>Was du mitbringen solltest:</h4>
<ul class="ul-list">
<li>Studiengänge mit den Schwerpunkten Betriebswirtschaft oder Ingenieurwesen (Bachelor-
oder
Masterstudiengang)
</li>
<li>Hohe Interesse für den Einsatz von Künstlicher Intelligenz
</li>
<li>Gute Ausstrahlung, Überzeugungskraft und Eigeninitiative vor Kunden</li>
<li>Beratungs/SaaS-Startup-Erfahrung wird bevorzugt.</li>
<li>Ambitionierte und verantwortungsvolle Arbeitsweise</li>
<li>Sehr gute Kenntnisse von deutsch und englisch in Wort und Schrift</li>
</ul>
<br>
<h4>Was wir bieten:</h4>
<ul class="ul-list">
<li>Steile Lernkurve</li>
<li>Direkte Zusammenarbeit mit dem Kernteam
</li>
<li>Ein angenehmes und lebendiges Arbeitsumfeld
</li>
<li>gute Aussichten auf eine langfristige Zusammenarbeit</li>
</ul>
<br>
<hr>
<p class="red">Wir haben dein Interesse geweckt ? Dann schicke uns doch gerne deine
Bewerbung
und deinen Lebenslauf an <a href="javascript://">[email protected]</a> mit dem Betreff
“Praktikum/
Werkstudent”</p>
<br>
<p class="red">Location: Frankfurt am Main</p>
</div>
</div>
</div>
<!-- <div class="card">
<div class="card-header" id="headingTwo">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdn2"
aria-expanded="false" aria-controls="acccrdn2">
REST API Developer
</a>
</div>
<div id="acccrdn2" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
As an API and Microservices Developer, you will be modernizing application
infrastructure and improving
delivery effectiveness by building integration-centric solutions (service-oriented
architectures). You
will work closely within an agile, scrum-based team to understand the business domain
and client
requirements.
</p>
<p class="text-p">
Our backend team has built an AI tool for manufacturing industry where it predicts
machine, process or
plant failures at various levels in the timeframe. Your main goal will be to create the
REST API layer
so that our customers can inject the input data and receive the predicted results back
seamlessly in
real time.
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li>Design Technical/Integration Architecture, including development, runtime and
operation
architectures of REST api</li>
<li>Setting up a middle level web server handling all authentication and various data
translation tasks
</li>
<li>Define and deliver integrated solutions by applying proven delivery methodologies
including Agile
and Model-Driven techniques</li>
<li>Data pipeline integration with the AI backend, your server and REST API shall be
able to manage the
continuous flow of data between this AI backend and customer’s database systems</li>
<li>Analyze metrics and measure the effectiveness of REST API and servers, by setting up
an effective
logging system</li>
</ul>
<br>
<h4>Your background:</h4>
<ul class="ul-list">
<li>An experienced backend developer with extensive experience in any backend
server-side language like
Java, NodeJS, Python etc</li>
<li>Having knowledge of Apache, NGINX, SOLR, Redis, shell scripting, and on a variety of
platforms,
including Unix/Linux, in physical, virtualized and cloud (Amazon/AWS) environments
</li>
<li>Experience with RDBMSs like SQL, MySQL, PostgreSQL; and/or time-series DBMS like
Elastic Search,
InfluxDB, TimescaleDB, SiriDB etc</li>
<li>Expert knowledge in architecting endpoints and designing responses in JSON and XML
markup</li>
<li>Experience with supporting, debugging and working alongside web applications,
including
affiliate/third-party users of APIs</li>
<li>Be very comfortable with RESTful interfaces (JSON, XML, SOAP), both for creating
outgoing responses
and incoming consumption of data from external sources.</li>
<li>Solid understanding of scripting, programming and testing methodologies.</li>
<li>Ability to operate in a team and individually as well as be self-driven with an
unwavering
commitment to meet deadlines while delivering a high-quality product.</li>
<li>Must have excellent problem-solving skills and love technical challenges</li>
<li>Computer Science degree preferred</li>
</ul>
<br>
<h4>Good to have:</h4>
<ul class="ul-list">
<li>Knowledge of Service Oriented Architecture (SOA) patterns, automating business
process models, API
enabled gateway and multi/hybrid cloud-based services</li>
</ul>
<hr>
<p class="red">To apply, please send an email, including your resume as an attachment, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Mumbai</p>
</div>
</div>
</div> -->
<!-- <div class="card">
<div class="card-header" id="headingThree">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdn3"
aria-expanded="false" aria-controls="acccrdn3">
Machine Learning Engineer
</a>
</div>
<div id="acccrdn3" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
Tvarit opens up a new Artificial Intelligence division with the vision to help
manufacturing companies
transform their businesses by leveraging AI. We strive to achieve efficient processes
management for
factories and plants, increasing the yield, increasing the accuracy and reliability by
bringing
data-driven decisions, shorten the time frame of delivery, and hence direct reflection
in terms of
profit to the enterprise. This is a chance for you to get in on the ground floor of an
exciting AI
company.
</p>
<p class="text-p">
You will be responsible for building AI / Machine Learning applications for our
manufacturing clients.
We expect you have strong programming skills, and background of statistical engineering,
data mining.
You should have a strong growth mindset and a strong work ethic.
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li>Work with manufacturing clients, understanding various problems and failures in
different kinds of
high tech machines</li>
<li>Working with manufacturing machines data formats, data collection via API (REST for
e.g.), data
cleaning and defining performance measures based on pre-processing of data</li>
<li>Define set of features on the basis of hundreds of sensors signals coming from the
single machine,
work on building time series forecasting and other cross metric ML models</li>
<li>Develop evaluation techniques to gauge the performance and accuracy of the models
you build</li>
<li>Write production ready code in Python / R for above models, further write unit
tests, integration
tests, end to end tests</li>
</ul>
<br>
<h4>Your background:</h4>
<ul class="ul-list">
<li>Know how of machine learning algorithms e.g., ARIMA, Linear Regression, Neural
Networks and relevant
maths such as linear algebra, probability, statistics</li>
<li>Strong hands-on skills with time series databases InfluxDB, SQL, Postgres etc</li>
<li>Proven ability to deliver complex metrics solutions and applications from end to end
and required
CI/CD tooling like Github, Docker, Travis, Jenkins</li>
<li>Ability to write code in a scripting language (Python, Perl, Bash etc)</li>
<li>Strong coding ability. While theoretical knowledge of algorithms is appreciated, it
is also
important that you're able to write clean, efficient code in Python (with a focus on
testability and
using OOP) on a Linux platform.</li>
</ul>
<br>
<h4>Our Team Culture:</h4>
<ul class="ul-list">
<li>We provide hands-on statistical solutions for automotive and manufacturing industry
in Germany to
highlight trends and generate insights</li>
<li>We have closely worked with Deutsche Bahn, Linde, Liebherr creating AI for machines
health and work
closely with their backend databases and data engineering teams</li>
<li>We act as primary point of contact for business forecasting, delivering
metrics/analytics that drive
the organization and help senior management taking data driven business decisions
</li>
</ul>
<hr>
<p class="red">To apply, please send an email, including your resume as an attachment, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Mumbai</p>
</div>
</div>
</div> -->
<div class="card">
<div class="card-header" id="headingFour">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdnMLR"
aria-expanded="false" aria-controls="acccrdnMLR">
Machine Learning Researcher (Digital Signal Processing)
</a>
</div>
<div id="acccrdnMLR" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
Tvarit opens up a new Artificial Intelligence division with a vision to help
manufacturing companies transform their businesses by leveraging AI. We strive to
achieve efficient processes management for factories and plants, increasing the yield,
increasing the accuracy and reliability by bringing data-driven decisions, shorten the
time frame of delivery, and hence direct reflection in terms of profit to the
enterprise. This is a chance for you to get in on the ground floor of an exciting AI
company.<br>
You will be responsible for building AI / Machine Learning applications for our
manufacturing clients. We expect you to have strong programming skills, and background
of statistical engineering, data mining. You should have a strong growth mindset and a
strong work ethic.
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li>Work with manufacturing clients, understanding various problems and failures in
different kinds of high tech machines.
</li>
<li>Develop digital signal-processing algorithms for vibration analysis of multi-sensor data
</li>
<li>Process existing dataset, perform statistical analysis of processed signals to provide insights of the measurements
</li>
<li>Define a set of features on the basis of hundreds of sensors signals coming from a
single machine, work on building time series forecasting and other cross metric ML
models
</li>
<li>Creating machine learning models on data containing high and low frequency signals.</li>
<li>Search for the latest research papers as per use case and make POC.</li>
<li>Collaborate with production engineers to deploy the results of your research.</li>
<li> Develop evaluation techniques to gauge the performance and accuracy of the models
you build. </li>
<li>Write production-ready code in Python / R for above models, further write unit
tests, integration tests, end to end tests</li>
</ul>
<br>
<h4>Your Background:</h4>
<ul class="ul-list">
<li>Know-how of signal processing algorithms e.g., noise filtering technique, data distributions, periodograms etc and the math needed to for this such as linear algebra, probability,
statistics.
</li>
<li>Know-how of data understanding and preprocessing methods e.g., fft, deep understanding of wavelets etc for feature engineering, further DTW, STFT based similarlity detection algorithms.
</li>
<li>Currently pursuing a Master or Doctoral degree in Electrical/Mechanical Engineering, Computer Engineering or related field</li>
<li>Ability to write code in a scripting language (Python, Matlab, R is a must).</li>
<li>Strong coding ability. While theoretical knowledge of algorithms is appreciated, it
is also important that you're able to write clean, efficient code in Python (with a
focus on testability and using OOP) on a Linux platform.</li>
</ul>
<br>
<h4>Our Team Culture:</h4>
<ul class="ul-list">
<li>We provide hands-on statistical solutions for the automotive and manufacturing
industry in Germany to highlight trends and generate insights.</li>
<li>We have closely worked with Deutsche Bahn, Linde, Liebherr creating AI for machines
health and work closely with their backend databases and data engineering teams
</li>
<li>Experience working with Manufacturing companies especially in German-speaking region
</li>
<li>We act as the primary point of contact for business forecasting, delivering
metrics/analytics that drives the organization and helps senior management taking
data-driven business decisions</li>
</ul>
<br>
<hr>
<p class="red">To apply, please send an email, including your resume as an attachment, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Mumbai</p>
</div>
</div>
</div>
<!-- <div class="card">
<div class="card-header" id="headingFive">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdn5"
aria-expanded="false" aria-controls="acccrdn5">
DevOps Engineer
</a>
</div>
<div id="acccrdn5" class="collapse" aria-labelledby="headingFive" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
We’re looking for a DevOps Engineer who will take a key role in our team. Devops
Engineer would
collaborate with software developers, system operators and other IT staff members to
manage code
releases. S/He cross and merge the barriers that exist between software development,
testing and
operations teams and keep existing networks in mind as they design, plan and test.
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li>Project Planning: You would participate in the processes of strategic
project-planning meetings. In
addition to providing their guidance and expertise on system options, risk, impact
and costs vs.
benefits, they create and share their operational requirements and development
forecasts to allow
for timely and accurate planning of projects.</li>
<li>Development: Responsible for developing and building IT solutions, DevOps Engineers
install and
configure solutions, implement reusable components, translate technical
requirements, assist with
all stages of test data, develop interface stubs and simulators and perform script
maintenance and
updates.
</li>
<li>Deployment: You would build automated deployments through the use of configuration
management
technology. They deploy new modules and upgrades and complete fixes within the
production
environment. Another duty is to make modules ready for production, which entails
moving them
according to specific procedures and documenting knowledge transfer.
</li>
<li>Maintenance and Troubleshooting: Routine application maintenance tasks are an
ongoing responsibility
of DevOps Engineers that they accomplish via strategy-building techniques. They also
help create
requirements and procedures for implementing routine maintenance. Troubleshooting
existing
information systems for errors and resolving those errors is also a main
responsibility of DevOps
Engineers.
</li>
<li>Performance Management: You would not only evaluate existing applications and
platforms, but also
give recommendations for enhancing performance via gap analysis, identifying the
most practical
alternative solutions and assisting with modifications.
</li>
</ul>
<br>
<h4>Your background:</h4>
<ul class="ul-list">
<li>Source Control (like Git, Bitbucket, Svn, VSTS etc)</li>
<li>Continuous Integration (like Jenkins, Bamboo, VSTS )</li>
<li>Automated Unit Testing, Integration Testing (Travis)</li>
<li>Cloud (like AWS, Azure, GoogleCloud, Openstack)</li>
<li>Infrastructure Automation (like Puppet, Chef, Ansible)</li>
<li>Deployment Automation & Orchestration (like Jenkins, VSTS, Octopus Deploy)</li>
<li>Container Concepts (LXD, Docker)</li>
<li>Orchestration (Kubernetes, Mesos, Swarm)</li>
<li>Server Security Concepts, Cloud Portal Firewalls</li>
<li>Computer Science degree preferred</li>
</ul>
<br>
<h4>Our Team Culture:</h4>
<ul class="ul-list">
<li>We provide hands-on statistical solutions for automotive and manufacturing industry
in Germany to
highlight trends and generate insights</li>
<li>We have closely worked with Deutsche Bahn, Linde, Liebherr creating AI for machines
health and work
closely with their backend databases and data teams</li>
<li>We act as primary point of contact for business forecasting, delivering
metrics/analytics that drive
the organization and help senior management taking data driven business decisions
</li>
</ul>
<br>
<p class="red">To apply, please send an email, including your resume as an attachment, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Mumbai</p>
</div>
</div>
</div> -->
<!-- <div class="card">
<div class="card-header" id="headingOne">
<a href="javascript://" class="collapsed" data-toggle="collapse" data-target="#acccrdn1"
aria-expanded="false" aria-controls="acccrdn1">
Full Stack Developer
</a>
</div>
<div id="acccrdn1" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
<p class="text-p">
We’re looking for a Full Stack developer who will take a key role on our team. Our Full
Stack developer
must have knowledge in all stages of software development. You’ll be working alongside
other engineers
and developers, collaborating on the various layers of the infrastructure for our AI
product.
</p>
<p class="text-p">
As of now we are using Grafana open source utility for our frontend, so your task would
be to write
plugins for Grafana or even tweak Grafana’s source code sometime. About 80% of your work
would be on
backend, API and Microservices Development. You will be modernizing application
infrastructure and
improving delivery effectiveness by building integration-centric solutions
(service-oriented
architectures). You will work closely within an agile, scrum-based team to understand
the business
domain and client requirements.
</p>
<p class="text-p">
Our AI team has created an AI software for manufacturing industry where it predicts
machine, process or
plant failures at various levels in the timeframe. Your main goal will be to create the
REST API layer
so that our customers can inject the input data and receive the predicted results back
seamlessly in
real time.
</p>
<h4>Key responsibilities:</h4>
<ul class="ul-list">
<li>Frontend languages: typescript, javascript, css, webpack</li>
<li>Backend languages: Node JS or Python (web development frameworks)</li>
<li>Experience with cloud message APIs and usage of push notifications</li>
<li>Design Technical/Integration Architecture, including development, runtime and
operation
architectures of REST api</li>
<li>Data pipeline integration with the AI backend, your server and REST api shall be
able to manage
continuous flow of data between this AI backend and customer’s database systems</li>
<li>Analyze metrics and measure effectiveness of the web application and servers, by
setting up an
effective logging system</li>
</ul>
<br>
<h4>Your background:</h4>
<ul class="ul-list">
<li>An experienced full stack developer with extensive experience in any backend server
side language
like NodeJS or Python etc and frontend languages typescript and javascript</li>
<li>Having knowledge of Apache, NGINX, SOLR, Redis, shell scripting, and on a variety of
platforms,
including Unix/Linux, in physical, virtualized and cloud (Amazon/AWS) environments
</li>
<li>Experience with RDBMSs like SQL, MySQL, PostgreSQL; and/or timeseries DBMS like
Elastic Search,
InfluxDB, TimescaleDB, SiriDB etc</li>
<li>Be very comfortable with SOAP (XML) and RESTful interfaces (JSON), both for creating
outgoing
responses and incoming consumption of data from external sources.</li>
<li>Solid understanding of scripting, programming and testing methodologies.</li>
<li>Ability to operate in a team and individually as well as be self-driven with an
unwavering
commitment to meet deadlines while delivering a high quality product.</li>
<li>Computer Science degree preferred</li>
</ul>
<br>
<h4>Good to have:</h4>
<ul class="ul-list">
<li>Knowledge about Service Oriented Architecture (SOA) patterns, automating business
process models,
API enabled gateway and multi/hybrid cloud based services</li>
</ul>
<hr>
<p class="red">To apply, please send an email, including your resume as an attachment, to <a
href="javascript://">[email protected]</a></p>
<br>
<p class="red">Location: Mumbai</p>
</div>
</div>
</div> -->
</div>
</div>
</div>
<!------------------------ Automotives end --------------------->
<!------------------------ Automotives start --------------------->
<div class="section-padding">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="ourBox">
<div class="title">Our Mission</div>
<div class="short-line bg-grey"></div>
<div class="more">
<p class="text-p">
Our Mission is to build scalable and sustainable Automated Predictive Analytics (APA)
solutions which are invisible and assistive, allowing manufacturers to do what they love
- efficient productions. We are rooted to give one simple solution to make any work
easier, smarter and upgraded.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="ourBox rerBg-grd">
<div class="title">Our Culture</div>
<div class="short-line bg-white"></div>
<div class="more">
<p class="text-p">
How do you change the world? Bring people together. Where is the easiest big place to
bring people together? In the work environment. Therefore we consistently strive to
create the healthiest environment where our team can innovate, learn and grow without
any push and pull. We cater to the needs of our employees with utmost affection as they
belong with us. We care because you do.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="ourBox">
<div class="title">Our Team</div>
<div class="short-line bg-grey"></div>
<div class="more">
<p class="text-p">
Creating something unique to solve someone's problem is a fascinating feeling. Industry
4.0 has always been run by intellectual, enigmatic and dedicated professionals who push
their limits to break through the technical walls. Wearing the armor of skill, these
knights never fail to impress. Machine learning, time series databases, CI/CD tooling,
coding, are a few of their weapons. If the same fire of passion burns inside you, you're
welcome onboard. Remember, we've always been waiting for you.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!------------------------ Automotives end --------------------->
<!------------------------Countdown start --------------------->
<div class="section-padding">
<?php
include 'change_we_brought.php';
?>
</div>
<!------------------------Countdown end --------------------->
<!------------------------Automated slide start --------------------->
<?php
include 'change_we_bring.php';
?>
<!------------------------Automated slide end --------------------->
<!------------------------ tvarit start --------------------->
<div class="section-padding-both">
<div class="container">
<div class="white-box-shadow">
<div class="centerTitle">
<div class="text-big60"><span class="tvarit-black">Tv<span class="color">a</span>r<span
class="color">i</span>t</span> The Team</div>
</div>
<div class="centerPharseContent text-p">
We’re based out of Frankfurt Germany having the perfect team composition - a German founder bringing
vast know-how of machinery coupled with high-quality software expertise of the Indian founders.
</div>
</div>
</div>
</div>
<!------------------------ tvarit end ----------------------->
<!------------------------Client logo slide start --------------------->
<?php
include 'using-tvarit.php';
?>
<!------------------------Client logo slide end --------------------->
<!------------------------try demo start --------------------->
<!------------------------try demo end --------------------->
<!------------------------footer start --------------------->
<?php
include 'footer.php'
?>
<!------------------------footer end --------------------->
<!-- script start -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/SmoothScroll.js"></script>
<script src="js/flickity.pkgd.min.js"></script>
<script src="js/readmore.js"></script>
<script src="js/counting.js"></script>
<script src="js/script.js"></script>
<script src="js/parallax.js"></script>
</body>
</html>