Template creation guide

Getting started

Available fields

The JSON object below is a sample Profile that contains all possible fields you can use in your templates.

{
  email: "andrew.converter@cvtoblind.com",
  linkedin: "",
  custom_fields: {
    "custom_field_1": "Custom Value 1",
  },
  summary:
    "Machine Learning Engineer with 10 years of experience. A track record in innovative research and applying data to improve user experience. Proficient in ML and DevOps, known for pioneering solutions and implementing applications that broaden customer engagement.",
  first_name: "Andrew",
  last_name: "Converter",
  main_role: "Machine Learning Engineer",
  hobby: ["Basketball fan", "Sport statistics", "Geopolitics"],
  github: "",
  mobile: "+48 123 456 789",
  physical_address: "Kubusia Puchatka 1, Warsaw, Poland",
  detailed_address: {
    country: "Poland",
    city: "Warsaw",
    address: "Kubusia Puchatka 1",
    postal_code: "00-001",
  },
  total_experience: "10 years",
  additional_information: "",
  other_urls: [],
  skills: [
    "Natural Language Processing",
    "Data Analytics",
    "Model Development",
    "Machine Learning Integration",
    "Deep Learning",
    "Machine Learning",
  ],
  technologies: [
    "Android 8-9",
    "Linux",
    "Jenkins",
    "Jira/Confluence",
    "Maven",
    "Perforce/Git",
    "Weblogic",
    "JUnit",
    "Selenium",
    "PostgreSQL",
    "MySQL",
    "Java",
    "Java 8/11",
    "Python",
    "Angular JS",
    "J2EE",
    "Spring Boot",
    "Spring Framework",
    "AWS",
    "Azure",
    "Matlab",
    "GIMP",
  ],
  category_tech: {
    os: ["Android 8-9", "Linux"],
    devtool: [
      "Jenkins",
      "Jira/Confluence",
      "Maven",
      "Perforce/Git",
      "Weblogic",
    ],
    testing: ["JUnit", "Selenium"],
    database: ["PostgreSQL", "MySQL"],
    language: ["Java", "Java 8/11", "Python"],
    framework: ["Angular JS", "J2EE", "Spring Boot", "Spring Framework"],
    cloud_platform: ["AWS", "Azure"],
    other: ["Matlab", "GIMP"],
  },
  education: [
    {
      major: "Computer Science",
      start: "2013",
      degree: "Bachelor of Science",
      finish: "2017",
      faculty: "",
      university: "MIT - Cambridge",
    },
  ],
  languages: [
    { level: "Native", language: "Polish" },
    { level: "C1", language: "English" },
    { level: "B2", language: "German" },
  ],
  experience: [
    {
      to: "Current",
      from: "01-2022",
      roles: ["Senior Machine Learning Engineer"],
      company: "ML Wizards",
      location: "Warsaw, Poland",
      project:
        "A platform for aspiring data scientists to learn and practice machine learning.",
      technologies: [
        "MLnative",
        "Azure",
        "Java",
        "Python",
        "LLMs",
        "Hugging Face",
      ],
      responsibilities: [
        "Optimized machine learning models by implementing advanced algorithms and feature selection techniques.",
        "Developed custom machine learning algorithms for specific industry needs, resulting in improved performance and efficiency.",
        "Enhanced data quality with thorough preprocessing, cleaning, and transformation tasks, leading to more accurate model predictions.",
        "Collaborated with cross-functional teams to integrate machine learning solutions into existing software systems, streamlining processes and boosting productivity.",
      ],
    },
    {
      to: "12-2021",
      from: "03-2018",
      roles: ["Machine Learning Developer"],
      company: "Number Freak Lab",
      location: "Jakarta, Indonesia",
      technologies: ["Github", "Run.ai", "AWS", "Sagemaker", "Python", "Java"],
      project: "Random number generator based on latest homicide data",
      responsibilities: [
        "Enhanced machine learning model accuracy by developing and implementing advanced algorithms.",
        "Optimized data processing pipelines for efficient handling of large datasets, resulting in reduced computational time.",
        "Collaborated with cross-functional teams to develop innovative machine learning solutions, driving business growth.",
        "Designed and deployed scalable machine learning models, improving product recommendations for customers.",
      ],
    },
    {
      to: "02-2018",
      from: "10-2014",
      roles: ["DevOps Engineer"],
      company: "Big Bang Deployments",
      location: "New York, USA",
      technologies: ["CI/CD", "AWS", "Docker", "Java"],
      project: "Destroying other companies production servers as a service",
      responsibilities: [
        "Improved code deployment efficiency by automating processes with CI/CD pipelines.",
        "Reduced system downtime for critical applications by implementing robust monitoring and alerting tools.",
        "Enhanced application performance by optimizing infrastructure configurations based on usage patterns.",
        "Collaborated with development teams to streamline software releases, resulting in faster time to market.",
      ],
    },
  ],
  certifications: [
    { date: "2019", certificate: "LLM Fine Tuning Methods Training" },
    { date: "2018", certificate: "Infrastructure Advanced Course" },
    { date: "2017", certificate: "Cluster management" },
  ],
}

Tips & Tricks

  • List common patterns to copy & paste

Last updated