update

#102
by nouamanetazi HF staff - opened
dist/assets/.DS_Store DELETED
Binary file (6.15 kB)
 
dist/bibliography.bib CHANGED
@@ -316,6 +316,15 @@ url = {https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md}
316
  archivePrefix={arXiv},
317
  primaryClass={cs.AI}
318
  }
 
 
 
 
 
 
 
 
 
319
  @misc{hendrycks2021measuring,
320
  title={Measuring Massive Multitask Language Understanding},
321
  author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt},
 
316
  archivePrefix={arXiv},
317
  primaryClass={cs.AI}
318
  }
319
+ @misc{liu2023ringattentionblockwisetransformers,
320
+ title={Ring Attention with Blockwise Transformers for Near-Infinite Context},
321
+ author={Hao Liu and Matei Zaharia and Pieter Abbeel},
322
+ year={2023},
323
+ eprint={2310.01889},
324
+ archivePrefix={arXiv},
325
+ primaryClass={cs.CL},
326
+ url={https://arxiv.org/abs/2310.01889},
327
+ }
328
  @misc{hendrycks2021measuring,
329
  title={Measuring Massive Multitask Language Understanding},
330
  author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt},
dist/index.html CHANGED
The diff for this file is too large to render. See raw diff
 
package.json CHANGED
@@ -11,7 +11,7 @@
11
  "description": "--- title: \"The Nanotron Gigablogpost\" emoji: 🍷 colorFrom: pink colorTo: red sdk: static pinned: false header: mini ---",
12
  "main": "index.js",
13
  "scripts": {
14
- "dev": "webpack serve --open",
15
  "build": "NODE_ENV=production webpack"
16
  },
17
  "author": "",
 
11
  "description": "--- title: \"The Nanotron Gigablogpost\" emoji: 🍷 colorFrom: pink colorTo: red sdk: static pinned: false header: mini ---",
12
  "main": "index.js",
13
  "scripts": {
14
+ "dev": "webpack serve --open --hot",
15
  "build": "NODE_ENV=production webpack"
16
  },
17
  "author": "",
src/bibliography.bib CHANGED
@@ -316,6 +316,15 @@ url = {https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md}
316
  archivePrefix={arXiv},
317
  primaryClass={cs.AI}
318
  }
 
 
 
 
 
 
 
 
 
319
  @misc{hendrycks2021measuring,
320
  title={Measuring Massive Multitask Language Understanding},
321
  author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt},
 
316
  archivePrefix={arXiv},
317
  primaryClass={cs.AI}
318
  }
319
+ @misc{liu2023ringattentionblockwisetransformers,
320
+ title={Ring Attention with Blockwise Transformers for Near-Infinite Context},
321
+ author={Hao Liu and Matei Zaharia and Pieter Abbeel},
322
+ year={2023},
323
+ eprint={2310.01889},
324
+ archivePrefix={arXiv},
325
+ primaryClass={cs.CL},
326
+ url={https://arxiv.org/abs/2310.01889},
327
+ }
328
  @misc{hendrycks2021measuring,
329
  title={Measuring Massive Multitask Language Understanding},
330
  author={Dan Hendrycks and Collin Burns and Steven Basart and Andy Zou and Mantas Mazeika and Dawn Song and Jacob Steinhardt},
src/index.html CHANGED
The diff for this file is too large to render. See raw diff
 
webpack.config.js CHANGED
@@ -99,9 +99,14 @@ module.exports = {
99
  ],
100
  devtool: process.env.NODE_ENV === 'production' ? 'source-map' : 'eval-source-map',
101
  devServer: {
102
- static: "./dist", // Serve files from the 'dist' directory
103
- open: process.env.NODE_ENV !== 'production', // Automatically open the browser unless in production
104
- hot: process.env.NODE_ENV !== 'production', // Enable hot module replacement unless in production
 
 
 
 
 
105
  },
106
  mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
107
  optimization: {
 
99
  ],
100
  devtool: process.env.NODE_ENV === 'production' ? 'source-map' : 'eval-source-map',
101
  devServer: {
102
+ static: {
103
+ directory: path.join(__dirname, 'dist'),
104
+ },
105
+ hot: true,
106
+ watchFiles: ['src/**/*'],
107
+ client: {
108
+ overlay: true,
109
+ },
110
  },
111
  mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
112
  optimization: {