website/pages/en/index.js (184 lines of code) (raw):

/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ const React = require('react'); const CompLibrary = require('../../core/CompLibrary.js'); const MarkdownBlock = CompLibrary.MarkdownBlock; const Container = CompLibrary.Container; const GridBlock = CompLibrary.GridBlock; const bash = (...args) => `~~~bash\n${String.raw(...args)}\n~~~`; class HomeSplash extends React.Component { render() { const {siteConfig, language = ''} = this.props; const {baseUrl, docsUrl} = siteConfig; const docsPart = `${docsUrl ? `${docsUrl}/` : ''}`; const langPart = `${language ? `${language}/` : ''}`; const docUrl = doc => `${baseUrl}${docsPart}${langPart}${doc}`; const SplashContainer = props => ( <div className="homeContainer"> <div className="homeSplashFade"> <div className="wrapper homeWrapper">{props.children}</div> </div> </div> ); const Logo = props => ( <div className="splashLogo"> <img src={props.img_src} alt="Project Logo" /> </div> ); const ProjectTitle = () => ( <h2 className="projectTitle"> <small>{siteConfig.tagline}</small> </h2> ); const PromoSection = props => ( <div className="section promoSection"> <div className="promoRow"> <div className="pluginRowBlock">{props.children}</div> </div> </div> ); const Button = props => ( <div className="pluginWrapper buttonWrapper"> <a className="button" href={props.href} target={props.target}> {props.children} </a> </div> ); return ( <SplashContainer> <Logo img_src={baseUrl + 'img/ax_wireframe.svg'} /> <div className="inner"> <ProjectTitle siteConfig={siteConfig} /> <PromoSection> <Button href={docUrl('why-ax.html')}>Why Ax?</Button> <Button href={'#quickstart'}>Get Started</Button> <Button href={`${baseUrl}tutorials/`}>Tutorials</Button> </PromoSection> </div> </SplashContainer> ); } } class Index extends React.Component { render() { const {config: siteConfig, language = ''} = this.props; const {baseUrl} = siteConfig; const Block = props => ( <Container padding={['bottom', 'top']} id={props.id} background={props.background}> <GridBlock align="center" contents={props.children} layout={props.layout} /> </Container> ); const Description = () => ( <Block background="light"> {[ { content: 'This is another description of how this project is useful', image: `${baseUrl}img/docusaurus.svg`, imageAlign: 'right', title: 'Description', }, ]} </Block> ); const pre = '```'; const codeExample = `${pre}python >>> from ax import optimize >>> best_parameters, best_values, experiment, model = optimize( parameters=[ { "name": "x1", "type": "range", "bounds": [-10.0, 10.0], }, { "name": "x2", "type": "range", "bounds": [-10.0, 10.0], }, ], # Booth function evaluation_function=lambda p: (p["x1"] + 2*p["x2"] - 7)**2 + (2*p["x1"] + p["x2"] - 5)**2, minimize=True, ) >>> best_parameters {'x1': 1.02, 'x2': 2.97} # true min is (1, 3) `; const QuickStart = () => ( <div className="productShowcaseSection" id="quickstart" style={{textAlign: 'center'}}> <h2>Get Started</h2> <Container> <ol> <li> Install Ax: <MarkdownBlock>{bash`conda install pytorch torchvision -c pytorch # OSX only`}</MarkdownBlock> <MarkdownBlock>{bash`pip3 install ax-platform # all systems`}</MarkdownBlock> </li> <li> Run an optimization: <MarkdownBlock>{codeExample}</MarkdownBlock> </li> </ol> </Container> </div> ); const Features = () => ( <div className="productShowcaseSection" style={{textAlign: 'center'}}> <h2>Key Features</h2> <Block layout="fourColumn"> {[ { content: 'Easy to plug in new algorithms and use the library across ' + 'different domains.', image: `${baseUrl}img/th-large-solid.svg`, imageAlign: 'top', title: 'Modular', }, { content: 'Field experiments require a range of considerations ' + 'beyond standard optimization problems.', image: `${baseUrl}img/dice-solid.svg`, imageAlign: 'top', title: 'Supports A/B Tests', }, { content: 'Support for industry-grade experimentation ' + 'and optimization management, including MySQL storage.', image: `${baseUrl}img/database-solid.svg`, imageAlign: 'top', title: 'Production-Ready', }, ]} </Block> </div> ); const Showcase = () => { if ((siteConfig.users || []).length === 0) { return null; } const showcase = siteConfig.users .filter(user => user.pinned) .map(user => ( <a href={user.infoLink} key={user.infoLink}> <img src={user.image} alt={user.caption} title={user.caption} /> </a> )); const pageUrl = page => baseUrl + (language ? `${language}/` : '') + page; return ( <div className="productShowcaseSection paddingBottom"> <h2>Who is Using This?</h2> <p>This project is used by all these people</p> <div className="logos">{showcase}</div> <div className="more-users"> <a className="button" href={pageUrl('users.html')}> More {siteConfig.title} Users </a> </div> </div> ); }; return ( <div> <HomeSplash siteConfig={siteConfig} language={language} /> <div className="landingPage mainContainer"> <Features /> <QuickStart /> </div> </div> ); } } module.exports = Index;