This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Directory structure: | |
| └── apify-impit/ | |
| ├── README.md | |
| ├── impit/ | |
| │ ├── README.md | |
| │ ├── examples/ | |
| │ │ └── basic.rs | |
| │ └── src/ | |
| │ ├── errors.rs | |
| │ ├── http3.rs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Directory structure: | |
| └── apify-impit/ | |
| ├── README.md | |
| ├── impit/ | |
| │ ├── README.md | |
| │ ├── examples/ | |
| │ │ └── basic.rs | |
| │ └── src/ | |
| │ ├── errors.rs | |
| │ ├── http3.rs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Step Training Loss | |
| 100 0.649400 | |
| 200 0.581900 | |
| 300 0.569900 | |
| 400 0.562100 | |
| 500 0.585800 | |
| 600 0.557500 | |
| 700 0.566200 | |
| 800 0.559700 | |
| 900 0.552600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Installing git-lfs on rpm | |
| export deborrpm=$(cat /etc/os-release | grep -E '^ID_LIKE=') | |
| export $deborrpm | |
| if [ "$ID_LIKE" == "debian" ]; then | |
| # checking if git is installed | |
| pkg="git" | |
| pkg1="git-lfs" | |
| dpkg -s "$pkg" &> /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright 2018 The Go Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style | |
| // license that can be found in the LICENSE file. | |
| (() => { | |
| // Map web browser API and Node.js API to a single common API (preferring web standards over Node.js API). | |
| const isNodeJS = typeof process !== "undefined"; | |
| if (isNodeJS) { | |
| global.require = require; | |
| global.fs = require("fs"); |