Skip to content

Instantly share code, notes, and snippets.

Directory structure:
└── apify-impit/
├── README.md
├── impit/
│ ├── README.md
│ ├── examples/
│ │ └── basic.rs
│ └── src/
│ ├── errors.rs
│ ├── http3.rs
Directory structure:
└── apify-impit/
├── README.md
├── impit/
│ ├── README.md
│ ├── examples/
│ │ └── basic.rs
│ └── src/
│ ├── errors.rs
│ ├── http3.rs
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
@AGIGOAT
AGIGOAT / install.sh
Last active December 24, 2022 12:02
#!/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
// 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");